如何链接我的Gridview函数到Gridview对象
本文关键字:Gridview 函数 对象 我的 何链接 链接 | 更新日期: 2023-09-27 17:50:39
我是创建ASP的新手。网络页面。我有一个具有GridView
对象的基本asp.net页面,并且我已经编写了一个RowDataBound
事件来根据条件更改行颜色。我需要一些关于如何链接我的功能/事件到实际的GridView
对象的帮助。函数/事件应该放在客户端还是服务器端?
p。我使用的是Visual Studio 2010,如果有一种方法可以使用工具栏选项向对象添加功能,那就太棒了。
RowDataBound事件在服务器端处理。你可以将事件代码/逻辑放在"code-behind"文件中,也可以在HTML文件中添加内联脚本。
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
// logic here
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>GridView RowDataBound Event</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Navy">GridView OnRowDataBound</h2>
<asp:SqlDataSource
ID="SqlDataSource1"
runat="server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT ProductID, ProductName, UnitPrice FROM Products"
>
</asp:SqlDataSource>
<asp:GridView
ID="GridView1"
runat="server"
DataSourceID="SqlDataSource1"
ForeColor="AliceBlue"
BackColor="DarkSalmon"
BorderColor="Salmon"
HeaderStyle-BackColor="Crimson"
AllowPaging="true"
AutoGenerateColumns="true"
DataKeyNames="ProductID"
OnRowDataBound="GridView1_RowDataBound"
>
</asp:GridView>
</div>
</form>
</body>
重要的是要注意OnRowDataBound属性必须与even方法具有相同的名称。例如,OnRowDataBound="GridView1_RowDataBound"
与事件处理程序签名GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
具有相同的名称。