我以前用2003写过,但是到2005里不能用 下面是2003的代码:<script>
function ShowModalWindow(url,width,height)
{
var r=window.showModalDialog(url,"");
window.location.reload();
return r;
}
</script>private void DataGrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if (e.Item.ItemType==ListItemType.Item||e.Item.ItemType==ListItemType.AlternatingItem)
{
string script="javascript:return ShowModalWindow('"+EditUrlbj+"?StoDate="+e.Item.Cells[0].Text');";
e.Item.Attributes.Add("ondblclick",script);
} if (e.Item.ItemType!=ListItemType.Header)
{
e.Item.Attributes.Add( "onmouseout","this.style.backgroundColor=\""+e.Item.Style["BACKGROUND-COLOR"]+"\"");
e.Item.Attributes.Add( "onmouseover","this.style.backgroundColor=\""+ "#E7E7FF"+"\"");
}
}