or
<add key="Telerik.ScriptManager.TelerikCdn" value="Enabled" /><add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled" /><add key="Telerik.Skin" value="Default" /><asp:Panel ID="rpItem" runat="server" Scrolling="Y"><telerik:RadListView ID="RadListView1" runat="server" DataKeyNames="iItemID, iSecID" ItemPlaceholderID="ItemPlaceHolder1" AllowPaging="true" Skin="Windows7" PageSize="1" Height="325px" > <LayoutTemplate> <asp:Panel ID="ItemPlaceHolder1" runat="server" Height="300px"> </asp:Panel> </LayoutTemplate> <ItemTemplate> </ItemTemplate> </telerik:RadListView></asp:Panel>Dim tblItemIDs As DataTable = GetItemIDs()For Each r As DataRow In tblItemIDs.Rows Me.hfItem.Value = r("iItemID") Dim ucItemInfo As UserControl = Page.LoadControl("/controls/iItem_Info.ascx") Dim infoView As RadListView = DirectCast(ucItemInfo.FindControl("RadListView1"), RadListView) infoView.Rebind() 'Need to add the ucItemInfo user control Dim ucItemPreview As UserControl = Page.LoadControl("/controls/iItem_Preview.ascx") Dim listView As RadListView = DirectCast(ucItemPreview.FindControl("RadListView1"), RadListView) listView.Rebind() 'Need to add the ucItemPreview user control RadListView1.DataBind()Next
But it find it when i do
For Each updatedItem As GridDataItem In gDGD.Items
If updatedItem.GetDataKeyValue("cInstID").ToString() = cInstID Then
......
can you explain where is the problem ?
Thank you a lot for your help
Anne
RadComboBox oops = new RadComboBox();oops.ID = "cboAccount";Response.Write("<script language='javascript'>alert('" + Server.HtmlEncode(oops.SelectedValue) + "')</script>");