我在我的应用程序中使用Gridview,其中包含按钮字段,如下所示。
<asp:GridView ID="grvAccrualData" runat="server" AutoGenerateColumns="False" ForeColor="Black" Font-Names="Arial"
BackColor="#B10633" __designer:wfdid="w9" AllowPaging="True" Width="100%" OnRowCommand="grvAccrualData_RowCommand">
<PagerSettings FirstPageText="&lt;&lt; First" LastPageText="Last &gt;&gt;"
Mode="NextPreviousFirstLast" NextPageText="Next &gt;" PreviousPageText="Prev &lt;">
</PagerSettings>
<FooterStyle BackColor="#B10633" Font-Bold="True" ForeColor="White"></FooterStyle>
<RowStyle Font-Names="Arial" Font-Size="8pt" HorizontalAlign="Left" VerticalAlign="Middle" BackColor="Ivory" />
<Columns>
<asp:BoundField DataField="AccrlHeaderAccrualNo" HeaderText="Accrual Number">
<ItemStyle HorizontalAlign="Left" VerticalAlign="Middle"></ItemStyle>
</asp:BoundField>
<asp:ButtonField ButtonType="button" CommandName="AccrualDetail" HeaderText="Debit Generation" Text="Account" />
</Columns>
<PagerStyle HorizontalAlign="Center" BackColor="#B10633" ForeColor="Black"></PagerStyle>
<HeaderStyle BackColor="#B10633" Font-Names="Arial" Font-Size="8pt" ForeColor="White">
</HeaderStyle>
<AlternatingRowStyle BackColor="#FFC0C0"></AlternatingRowStyle>
</asp:GridView>
我的服务器端代码是:
protected void grvAccrualData_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "AccrualDetail")
{
}
}
在此服务器代码中,我想在按钮点击时调用表单或网页。
答案 0 :(得分:0)
使用
Response.Redirect("~/WebPage.aspx");
或者,如果您想要传递参数以及此方法,请使用QueryString。