Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
protected void popuplink_Click(object sender, EventArgs e)
{
try
{

foreach (GridViewRow i in gvuser.Rows)
{


RadioButton rb = (RadioButton)i.FindControl("Radselect");
if (rb.Checked && rb != null)
{

txtmodusername.Text = i.Cells[2].Text;
txtfullname.Text = i.Cells[3].Text;
txtmodemail.Text = i.Cells[4].Text;
ddlmodpermission.SelectedItem.Text = i.Cells[5].Text;
Checkbox3.Visible = i.Cells[6].Visible;


this.Btn_Modify_ModalPopupExtender.Show();
}
}
}
XML
<asp:Button ID="popuplink"
                                runat="server" Text="Modify" OnClick="popuplink_Click" /><cc1:ModalPopupExtender
                                    ID="Btn_Modify_ModalPopupExtender" runat="server" TargetControlID="Btntest" CancelControlID="popupclose"
                                    PopupControlID="Panel2" Enabled="True" DynamicServicePath="" BackgroundCssClass="ModalPopupBG">
                                </cc1:ModalPopupExtender>

When i am debuging,values assign to textbox controls.but popup does not show.
Posted

create a javascript function and bing This Javascript function to gridview rowdatabound event.
and
show your modalPopup using javascript ...
 
Share this answer
 
are you opening your popup on on gridview event if yes then you can store the row id on that event in session or cookies. do the same code but change the condition in "if" just check the i rowid and find the control of that row so you can have the all value in your controls... hope it will help you......:-)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900