|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[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: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: |
<%@ Page Language="C#" MasterPageFile="~/KalleUsrPages/KalleUser.master" AutoEventWireup="true" CodeFile="Request.aspx.cs" Inherits="KalleUsrPages_Request" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:DetailsView ID="detailsRequest" runat="server" DataSourceID="sourceRequestDetails"
AutoGenerateRows="False" CellPadding="4" ForeColor="#333333" GridLines="None" DataKeyNames="request_id">
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<CommandRowStyle BackColor="#C5BBAF" Font-Bold="True" />
<EditRowStyle BackColor="#7C6F57" />
<RowStyle BackColor="#E3EAEB" />
<PagerStyle BackColor="#666666" ForeColor="White" HorizontalAlign="Center" />
<Fields>
<asp:CommandField ShowEditButton="True" />
<asp:BoundField DataField="request_id" HeaderText="Request Id" ReadOnly="True" />
<asp:BoundField DataField="REQUESTED_BY" HeaderText="Requested by" ReadOnly="True" />
<asp:BoundField DataField="REQUEST_DATE" HeaderText="Req. date" ReadOnly="True" />
<asp:BoundField DataField="DATE_OF_DELIVERY" HeaderText="Prel. delivery" />
<asp:BoundField DataField="DELIVERED_DATE" HeaderText="Actual delivered date" />
<asp:BoundField DataField="REF_ELEVATOR_PLAN" HeaderText="Ref. elevator plan" ReadOnly="True" />
<asp:BoundField DataField="ELEVATOR_DIRECTOR_NAME" HeaderText="Study director" ReadOnly="True" />
<asp:BoundField DataField="SHIPMENT_RECIPIENT" HeaderText="Recipient" ReadOnly="True" />
<asp:BoundField DataField="SHIPMENT_DELIVERY_ADDRESS" HeaderText="Delivery address"
ReadOnly="True" />
<asp:BoundField DataField="SPEC_REQUIREMENT" HeaderText="Special requirements" ReadOnly="True" />
<asp:TemplateField HeaderText="Status">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text=' <%# Eval("REQUEST_STATUS_TEXT") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="dropRequestStatus" runat="server" DataSourceID="sourceRequestStatuses"
DataTextField="request_status_text" DataValueField="request_status" CausesValidation="true">
</asp:DropDownList>
</EditItemTemplate>
</asp:TemplateField>
</Fields>
<FieldHeaderStyle BackColor="#D0D0D0" Font-Bold="True" />
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:DetailsView>
<asp:GridView ID="gridducks" runat="server" CellPadding="4" DataSourceID="sourceducks"
ForeColor="#333333" GridLines="None" AutoGenerateColumns="False">
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<RowStyle BackColor="#E3EAEB" />
<EditRowStyle BackColor="#7C6F57" />
<SelectedRowStyle BackColor="#C5BBAF" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#666666" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="duck_id" HeaderText="duck Id" ReadOnly="True" SortExpression="duck_id" />
<asp:BoundField DataField="elevator_id_alpha" HeaderText="Study Id" ReadOnly="True"
SortExpression="elevator_id_alpha" />
<asp:BoundField DataField="group_name" HeaderText="Group Name" ReadOnly="True" SortExpression="group_name" />
<asp:BoundField DataField="car_rel_id" HeaderText="car Rel Id" ReadOnly="True"
SortExpression="car_rel_id" />
<asp:BoundField DataField="car_abs_id" HeaderText="car Specific Id" ReadOnly="True"
SortExpression="car_abs_id" />
<asp:BoundField DataField="gender" HeaderText="Gender" ReadOnly="True" SortExpression="gender" />
<asp:BoundField DataField="color" HeaderText="color" ReadOnly="True" SortExpression="color" />
<asp:BoundField DataField="duck_time" HeaderText="Relative Day" ReadOnly="True"
SortExpression="duck_time" />
<asp:BoundField DataField="duck_type" HeaderText="duck Type" ReadOnly="True"
SortExpression="duck_type" />
<asp:BoundField DataField="duck_rejected_text" HeaderText="Confirmed" SortExpression="duck_rejected_text" />
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="sourceRequestDetails" runat="server" SelectMethod="searchRequestsDetailsSelectMethod"
TypeName="KallebankDataLayer" UpdateMethod="requestUpdateMethod">
<SelectParameters>
<asp:QueryStringParameter DefaultValue="0" Name="requestId" QueryStringField="id"
Type="Int32" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="request_id" Type="Int32" />
<asp:Parameter Name="date_of_delivery" Type="DateTime" />
<asp:Parameter Name="delivered_date" Type="DateTime" />
<asp:Parameter Name="request_status" Type="Int32" />
</UpdateParameters>
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="sourceRequestStatuses" runat="server" SelectMethod="getduckRequestStatusesLookup"
TypeName="KallebankDataLayer">
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="sourceducks" runat="server" SelectMethod="requestsNonKallebankUserducksSelectMethod"
TypeName="KallebankDataLayer">
<SelectParameters>
<asp:QueryStringParameter DefaultValue="0" Name="requestId" QueryStringField="id"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</asp:Content>
|
Advertisement
| Hall of Fame |