Redirect to a form on button click in Grid View

455 Views Asked by At

I have build a GridView on a webpage, having two ButtonFields columns: Accept and Reject. Now when I click on Reject button, I want to show a popup form with some input fields and store that data into the Database.

I'm just stuck at showing the popup on clicking the reject button field. Is this possible?v

1

There are 1 best solutions below

0
On

put code in .aspx file

<asp:TemplateField HeaderText="Edit" itemstyle-width="150px">
                                <ItemTemplate>
                                    <asp:LinkButton ID="btnEdit" runat="server" CommandName="Edit" Text="Edit" CausesValidation="false"/>
                                </ItemTemplate>    
                            </asp:TemplateField>  

put code in .cs file

 if (e.CommandName.Equals("Edit"))
    {
        string QueryString="val";
        Page.ClientScript.RegisterStartupScript(GetType(), "", "window.open('Page.aspx?QS=" + QueryString + "','','width=500,height=500');"", true);
    }