Advertisement
Advertisement
| 07.16.2008 at 06:18AM PDT, ID: 23569478 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: |
<asp:Content ID="Content1" ContentPlaceHolderID="cphNew2ColMain" Runat="Server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<div class="pagetitle">
<asp:Image ID="imgAppLog" ImageUrl="~/App_Themes/jcb-v3/images/pageicons/event-log.gif" ImageAlign="AbsMiddle" runat="server" />
<asp:Label ID="lblDetailsEntryTitle" Text="Master Event Log" CssClass="pagetitle" runat="server"></asp:Label>
</div>
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<asp:GridView ID="gvAppLog" DataKeyNames="id" AllowPaging="true" PageSize="15" PagerSettings-Mode="NumericFirstLast"
DataSourceID="sdsLogEntries" Width="100%" AutoGenerateColumns="False" runat="server">
<Columns>
<asp:CommandField ShowSelectButton="True" />
<asp:BoundField DataField="id" HeaderText="#" />
<asp:BoundField DataField="dtStamp" HeaderText="Date & Time" />
<asp:BoundField DataField="dim1" HeaderText="Event" />
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
<asp:SqlDataSource ID="sdsLogEntries" SelectCommand="sp_getLogEntries" SelectCommandType="StoredProcedure"
ConnectionString="<%$ ConnectionStrings:dev %>" runat="server"></asp:SqlDataSource>
</asp:Content>
<asp:Content ID="ContentRight" ContentPlaceHolderID="cphNew2ColRight" runat="server">
<div class="rightsubtitlebar">
<asp:Label ID="lblDetailsEntryIntro" Text="Selected log entry details will appear here:" SkinID="subtitle" runat="server"></asp:Label>
</div>
<asp:DetailsView ID="dtvLogEntry" DataKeyNames="id" Width="100%"
AutoGenerateRows="False" runat="server">
<Fields>
<asp:BoundField DataField="id" HeaderText="Event ID" />
<asp:BoundField DataField="dtStamp" HeaderText="Date & Time Stamp" />
<asp:BoundField DataField="dim1" HeaderText="Event" />
<asp:boundfield datafield="dim2" HeaderText="Data 2" />
<asp:BoundField DataField="dim3" HeaderText="Data 3" />
<asp:BoundField DataField="dim4" HeaderText="Data 4" />
<asp:BoundField DataField="dim5" HeaderText="Data 5" />
<asp:BoundField DataField="dim6" HeaderText="Data 6" />
<asp:BoundField DataField="dim7" HeaderText="Data 7" />
</Fields>
</asp:DetailsView>
<br class="clear" />
<asp:UpdateProgress ID="udpLogEntry" AssociatedUpdatePanelID="UpdatePanel2" runat="server">
<ProgressTemplate>
<asp:Image ID="imgProgress" ImageUrl="~/App_Themes/jcb-v3/images/ajaxloading/square-circle.gif" ImageAlign="AbsMiddle" runat="server" />
<asp:Label ID="lblProgress" Text="Please wait..." SkinID="information" runat="server"></asp:Label>
</ProgressTemplate>
</asp:UpdateProgress>
</asp:Content>
|