1、//加入鼠标滑过的高亮效果
if (e.Row.RowType == DataControlRowType.DataRow)//判定当前的行是否属于datarow类型的行
{
//当鼠标放上去的时候 先保存当前行的背景颜色 并给附一颜色
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#fff7ce',this.style.fontWeight='';");
//当鼠标离开的时候 将背景颜色还原的以前的颜色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
}
//单击行改变行背景颜色
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", "this.style.backgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
}
2、弹出窗口
<script type="text/javascript" language="javascript">
function ShowDialog(url)
{
var iWidth=600; //模态窗口宽度
var iHeight=500;//模态窗口高度
var iTop=(window.screen.height-iHeight)/2;
var iLeft=(window.screen.width-iWidth)/2;
window.open(url,"Detail",
"Scrollbars=yes,Toolbar=no,Location=no,Direction=no,Resizeable=no, Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft)
}
</script>
在dataview中调用:
<asp:TemplateField HeaderText="姓名">
<ItemTemplate>
<a href="javascript:ShowDialog('myinfo.aspx?bmxh=<%#Eval("bmxh").ToString()%>&ksbh=<%#Eval("ksbh").ToString()%>') "><%# Eval("name").ToString() %></a>
</ItemTemplate>
</asp:TemplateField>
在超链接中调用:
<a href="javascript:ShowDialog('showgg.aspx?id=<%=ds.Tables[0].Rows[i]["id"].ToString().Trim()%>') "><%=ds.Tables[0].Rows[i]["zt"].ToString().Trim() %></a>
3、在子页面中刷新整个框架
Response.Write("<script>top.location.href='main.aspx';</script>");
4、在弹出窗口中刷新父页面
Response.Write("<script>opener.location.reload();window.close();</script>");
5、在弹出页面中向父页传值(父页面中的空间是客户端控件)
Response.Write("<script>opener.document.all.sendto.Value='"+tempstr+"';window.close()</script>");