| <telerik:GridButtonColumn ConfirmText="Delete this entry?" ConfirmDialogType="RadWindow" |
| ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete" |
| UniqueName="colDelete"> |
| <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> |
| </telerik:GridButtonColumn> |


| Detailed Message |
| User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) |
| Time: Mon, 15 Mar 2010 10:38:43 UTC |
| Message: Sys.InvalidOperationException: Two components with the same id 'dnn_ctr501_Schedule_RadWindow1_C_ScheduleControl1_dpStart_dateInput' can't be added to the application. |
| Line: 4044 |
| Char: 59 |
| Code: 0 |
| URI: http://local.com/ScriptResource.axd?d=qr-JWAPlSw_PG_fBRvJ-SiEuS4djBj_SaOoatAKMs3TZe3kUSpNeAqXh25Mjn4IhJlouOn480u1-9iYlbSTecUf0MB7rsMw0M1hN9CF4krQ1&t=ffffffffec2d9970 |
| Message: Sys.InvalidOperationException: Two components with the same id 'dnn_ctr501_Schedule_RadWindow1_C_ScheduleControl1_dpStart_calendar' can't be added to the application. |
| Line: 4044 |
| Char: 59 |
| Code: 0 |
| URI: http://local.com/ScriptResource.axd?d=qr-JWAPlSw_PG_fBRvJ-SiEuS4djBj_SaOoatAKMs3TZe3kUSpNeAqXh25Mjn4IhJlouOn480u1-9iYlbSTecUf0MB7rsMw0M1hN9CF4krQ1&t=ffffffffec2d9970 |
| Message: Sys.InvalidOperationException: Two components with the same id 'dnn_ctr501_Schedule_RadWindow1_C_ScheduleControl1_dpStart' can't be added to the application. |
| Line: 4044 |
| Char: 59 |
| Code: 0 |
| URI: http://local.com/ScriptResource.axd?d=qr-JWAPlSw_PG_fBRvJ-SiEuS4djBj_SaOoatAKMs3TZe3kUSpNeAqXh25Mjn4IhJlouOn480u1-9iYlbSTecUf0MB7rsMw0M1hN9CF4krQ1&t=ffffffffec2d9970 |
| Message: 'this._viewIDs.length' is null or isnot object. |
| Line: 237 |
| Char: 32 |
| Code: 0 |
| URI: http://local.com/ScriptResource.axd?d=VS50ULAIa2fw87DZDJgKffqbwGPrHjCRHGtAKnY8OR5fe2_yiN5tJriJswV0jM3wKTepcDRFt6GEgA7oFa0N8w2&t=ffffffffb976752b |
<asp:Panel ID="pnlmove" runat="server" CssClass="modalWindow">
<table style="width: 350px; height: 100px"><tr>
<td align="left" colspan="2"><p>Move to Customer</p></td>
<td align="left">
<telerik:RadComboBox ID="rcbCustomerName" runat="server" ZIndex="100002" MarkFirstMatch="true" DataTextField="Name" DataValueField="Id"></telerik:RadComboBox>
</td></tr>
<tr><td align="left" style="width: 50px"><div class="btnLrgDkBlue_Left"><div class="btnLrgDkBlue_Right">
<asp:Button ID="btnok" class="btnLrgDkBlue_Middle" Text="Yes" runat="server"
Style="width: 32px" OnClick="btnok_Click" OnClientClick="click" />
</div></div></td>
<td align="left" style="width: 60px"><div class="btnLrgLtBlue_Left"><div class="btnLrgLtBlue_Right">
<button id="btnclose" class="btnLrgLtBlue_Middle" onclick="hidePopupmove()" style="width: 45px">Cancel</button>
</div></div></td>
<td style="width: 250px"> </td></tr>
</table></asp:Panel>
<ajaxToolkit:ModalPopupExtender ID="MPEmove" runat="server" TargetControlID="HiddenField1"
PopupControlID="pnlmove" BackgroundCssClass="modalBackground" OkControlID="btnok"
CancelControlID="btnclose" />
cs code
protected void btnok_Click(object sender, EventArgs e)
{
string customer = rcbCustomerName.SelectedValue;
}
