很多人说很难,其实就这几行代码。只要在DataGrid1的ItemDataBound中写入下代码即可
private void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemIndex>=0) //此行可以删除掉
{
//弹出窗口代码
e.Item.Attributes.Add("onclick","window.open('WebForm2.aspx?ZoneNo="+e.Item.Cells[0].Text+"','','Toolbar=no')");
e.Item.Attributes.Add("onMouseOver","this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';");
e.Item.Attributes.Add("onMouseOut","this.style.backgroundColor='#f7f7f7';");
}
}

博客指出在DataGrid实现弹出窗口功能并不难,只需在DataGrid1的ItemDataBound中写入特定代码。代码包含弹出窗口、鼠标悬停和移出时的样式设置等内容。
1283

被折叠的 条评论
为什么被折叠?



