Hi can anyone tell me how can i search and Update my User control using textChenged event on a Modal popup without closing the Popup ? I have this Dynamic User control that containts TextBox and GridView The Master page ImageButton supplies the GridView
Datasource and the shows the User Control which displays the data
Protected Sub imgBtn2_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles imgBtn2.Click
Dim MyController As Control = LoadControl("~/UserControl/MyUserControl.ascx")
Dim gv As New GridView
gv = CType(UCBranch.FindControl("gvBranch"), GridView)
gv.DataSource = MyDatatable
gv.DataBind()
LoadUserContrl.Controls.Add(MyController)
MPEUC.Show()
End Sub
This is my MyUserControl.ascx GridView
<div class="GVData">
<asp:GridView ID="gvBranch" runat="server" Auto ...
Go to the complete details ...