|
[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: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: |
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:XXXXXX%>"
DeleteCommand="DELETE FROM [vaPressRelease] WHERE [PressID] = @PressID"
InsertCommand="INSERT INTO [vaPressRelease] ([PressTitle], [PressSumm], [PressDateRel], [PressText], [PressVisible], [PressIsCurrent]) VALUES (@PressTitle, @PressSumm, @PressDateRel, @PressText, @PressVisible, @PressIsCurrent)"
SelectCommand="SELECT * FROM [vaPressRelease] ORDER BY [PressDateRel] DESC, [PressIsCurrent] DESC"
UpdateCommand="UPDATE [vaPressRelease] SET [PressTitle] = @PressTitle, [PressSumm] = @PressSumm, [PressDateRel] = @PressDateRel, [PressText] = @PressText, [PressVisible] = @PressVisible, [PressIsCurrent] = @PressIsCurrent WHERE [PressID] = @PressID">
<DeleteParameters>
<asp:Parameter Name="PressID" Type="Int32" />
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="PressTitle" Type="String" />
<asp:Parameter Name="PressSumm" Type="String" />
<asp:Parameter Name="PressDateRel" Type="DateTime" />
<asp:Parameter Name="PressText" Type="String" />
<asp:Parameter Name="PressVisible" Type="Boolean" />
<asp:Parameter Name="PressIsCurrent" Type="Boolean" />
<asp:Parameter Name="PressID" Type="Int32" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="PressTitle" Type="String" />
<asp:Parameter Name="PressSumm" Type="String" />
<asp:Parameter Name="PressDateRel" Type="DateTime" />
<asp:Parameter Name="PressText" Type="String" />
<asp:Parameter Name="PressVisible" Type="Boolean" />
<asp:Parameter Name="PressIsCurrent" Type="Boolean" />
</InsertParameters>
</asp:SqlDataSource>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadGrid1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<br />
<p>
Use the following form to manage or delete a Press Release. To update a release simply click on the press release row you wish to change. To add a press release click on the Add new record located at the top of the grid. To delete a press release click on the Delete link to the far right of the row.<br /><b>BE AWARE YOU WILL NOT BE PROMPTED TO CONFIRM YOUR DELETIONS.</b>
</p>
<p>
</p>
<telerik:RadGrid ID="RadGrid1" runat="server" AllowAutomaticDeletes="True"
DataSourceID="SqlDataSource1" GridLines="None"
AllowAutomaticInserts="True" AllowAutomaticUpdates="True"
ShowStatusBar="True" Skin="Gray">
<HeaderContextMenu EnableTheming="True">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</HeaderContextMenu>
<MasterTableView allowpaging="True" autogeneratecolumns="False" datakeynames="PressID"
datasourceid="SqlDataSource1" CommandItemDisplay="Top" ShowFooter="True">
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridEditCommandColumn>
</telerik:GridEditCommandColumn>
<telerik:GridBoundColumn DataField="PressID" DataType="System.Int32"
HeaderText="ID" ReadOnly="True" SortExpression="PressID"
UniqueName="PressID" Visible="False">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="PressTitle" HeaderText="Title"
SortExpression="PressTitle" UniqueName="PressTitle">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="PressSumm" HeaderText="Summary"
SortExpression="PressSumm" UniqueName="PressSumm">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="PressDateRel" DataType="System.DateTime"
HeaderText="Date Released" SortExpression="PressDateRel"
UniqueName="PressDateRel" DataFormatString="{0:MM/dd/yyyy}">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="PressText" HeaderText="Body"
SortExpression="PressText" UniqueName="PressText">
</telerik:GridBoundColumn>
<telerik:GridCheckBoxColumn DataField="PressVisible" DataType="System.Boolean"
HeaderText="Is Visible" SortExpression="PressVisible" UniqueName="PressVisible">
</telerik:GridCheckBoxColumn>
<telerik:GridCheckBoxColumn DataField="PressIsCurrent"
DataType="System.Boolean" HeaderText="Is Current "
SortExpression="PressIsCurrent" UniqueName="PressIsCurrent">
</telerik:GridCheckBoxColumn>
<telerik:GridButtonColumn CommandName="Delete" Text="Delete"
UniqueName="column">
</telerik:GridButtonColumn>
</Columns>
<EditFormSettings EditFormType="Template">
<EditColumn UniqueName="EditCommandColumn1">
</EditColumn>
<FormTemplate>
<table style="width:100%;">
<tr>
<td width="120px" valign="top">
Press Release Title:</td>
<td >
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("PressTitle") %>'
Width="351px"></asp:TextBox>
</td>
<td>
<asp:CheckBox ID="CheckBox1" runat="server"
Checked='<%# Bind("PressIsCurrent") %>' Text="Current" />
</td>
<td >
</td>
</tr>
<tr>
<td width="120px" valign="top">
Release Date:</td>
<td >
<asp:TextBox ID="TextBox2" runat="server"
Text='<%# Bind("PressDateRel", "{0:MM/dd/yyyy}") %>' Width="177px"></asp:TextBox>
</td>
<td >
<asp:CheckBox ID="CheckBox2" runat="server"
Checked='<%# Bind("PressVisible") %>' Text="Visible" />
</td>
<td>
</td>
</tr>
<tr>
<td width="120px" valign="top">
Summary:</td>
<td >
<asp:TextBox ID="TextBox3" runat="server" Rows="5"
Text='<%# Bind("PressSumm") %>' TextMode="MultiLine" Width="476px"></asp:TextBox>
</td>
<td >
</td>
</tr>
<tr>
<td width="120px" valign="top">
Press Release Body<br />
Text</td>
<td width="660px" colspan="2">
<telerik:RadEditor ID="RadEditor1" Runat="server"
Content='<%# Bind("PressText") %>' Width="650px" Skin="Gray"
BackColor="White">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="Italic" />
<telerik:EditorTool Name="Underline" />
<telerik:EditorTool Name="JustifyLeft" />
<telerik:EditorTool Name="JustifyCenter" />
<telerik:EditorTool Name="JustifyRight" />
<telerik:EditorTool Name="JustifyFull" />
<telerik:EditorTool Name="LinkManager" />
<telerik:EditorTool Name="Undo" />
<telerik:EditorTool Name="Redo" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="FontSize" />
<telerik:EditorTool Name="ForeColor" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" />
<telerik:EditorTool Name="PasteAsHtml" />
<telerik:EditorTool Name="PasteFromWord" />
<telerik:EditorTool Name="PastePlainText" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</Content>
</telerik:RadEditor>
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnUpdate" Text='<%# (Container as GridItem).OwnerTableView.IsItemInserted ? "Insert" : "Update" %>' runat="server" CommandName='<%# (Container as GridItem).OwnerTableView.IsItemInserted ? "PerformInsert" : "Update" %>' />
<asp:Button ID="btnCancel" Text="Cancel" runat="server" CausesValidation="false" CommandName="Cancel" />
</td>
<td></td>
</tr>
</table>
</FormTemplate>
</EditFormSettings>
<PagerStyle Mode="NextPrevAndNumeric" Position="Top" />
</MasterTableView>
<FilterMenu EnableTheming="True">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</FilterMenu>
</telerik:RadGrid>
|
Advertisement
| Hall of Fame |