嗨,我正在使用 DataGridView,通过映射我在 Hyperlinkfield 中给出的数据库中的 URL(例如:datagridview 中将显示 10-20 个链接)如果特定人单击特定链接,则它必须重定向到该链接通过增加该特定 URL 的数据库中的 Count 列来获取特定 URL。
注意:我在模板设计模式下使用 datagridview。
嗨,我正在使用 DataGridView,通过映射我在 Hyperlinkfield 中给出的数据库中的 URL(例如:datagridview 中将显示 10-20 个链接)如果特定人单击特定链接,则它必须重定向到该链接通过增加该特定 URL 的数据库中的 Count 列来获取特定 URL。
注意:我在模板设计模式下使用 datagridview。
使用 CommandArgument 并在 Gridview onrowcommand 事件中做你的事情。
<asp:GridView ID="GridView1" OnRowCommand="GridView1_RowCommand" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="btnUpdate" runat="server" CommandArgument='<%#Eval("LinkID")%>' CommandName="btnUpdate" Text='<%#Eval("LinkDisplayText")%>'>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
protected void GridView1_RowCommand(Object sender, GridViewCommandEventArgs e)
{
if(e.CommandName=="btnUpdate")
{
int index = Convert.ToInt32(e.CommandArgument);
//based on LinkID get the current click count from database.
int icount;
//increment the count
//update the database once again and get the link as well.
//redirect to the link
Response.Redirect("");
}
}
您可以在行命令事件中执行此操作
使用您希望提供的网址创建动态点击