同上

解决方案 »

  1.   

    <asp:HyperLink id="HyperLink1" runat="server" NavigateUrl="javascript:window.open('index.htm','Sample','toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=no,copyhistory=yes,width=300,height=200,left=100,top=100')">HyperLink</asp:HyperLink>
    <!--说明:将其中的链接文件test.htm改为你的路径,窗口参数如下: toolbar=yes, 显示工具条
    location=yes,显示网址栏
    directories=no,导航条
    status=no,状态条
    menubar=yes,菜单
    scrollbars=yes,滚动条
    resizable=no,是否可以改变大小
    copyhistory=yes,历史按钮
    width=300,宽
    height=200'高
    left=1000,距离左边100
    top=100,距离顶端100-->
      

  2.   

    yeah.同意。但是楼主问的是在DataGrid中的某个字段。我建议你构造一个临时字段,该字段存储楼上构造的URL地址串。
      

  3.   

    1.
    弹出窗口:
    this.Label.Text = "<a onclick=window.open('"+index.aspx?ContactNo="+a.ToString()+"','popuppage','width=400,height=380,top=130,left=200,scrollbars,resizable')  style='CURSOR: hand'>"+e.Item.Cells[2].Text.ToString()+"</a>";2.
    private void Button1_Click(object sender, System.EventArgs e)
    {
    this.Page.RegisterStartupScript("open","<script>window.open('WebForm1.aspx');</script>");
    }
    3.超链接打开
    temp.Append(" <TD>");
    temp.Append("    <A href='"+XframeSysInfo.SysRoot+"Go.aspx?ModuleID=CRMPSReport&amp;ReportName=ProjectDetail&amp;startdate="+this.uctrlSelectDate.BeginDate.ToShortDateString()+"&amp;enddate"+this.uctrlSelectDate.EndDate.ToShortDateString()+"&amp;area="+this.uctrlSelectArea.SelectAreas+"&amp;month="+i.ToString()+"'>");
    temp.Append(" </TD>");4.新窗口中打开
    temp.Append("           <TD align=\"center\" class=\"TableContent\" border=1 style=\"border-collapse:collapse;border-color:#5BA7F0;\">"                             
    + "<a onclick=window.open('"+this.XframeSysInfo.SysRoot + this.XframeSysInfo.MainPage.Name+"?ModuleID=CRMPSReport&ReportName=ProjectDetail&amp;startdate="+this.uctrlSelectDate.BeginDate.ToShortDateString()+"&amp;enddate"+this.uctrlSelectDate.EndDate.ToShortDateString()+"&amp;area="+this.uctrlSelectArea.SelectAreas+"&amp;month="+i.ToString()+"','popuppage','width=800,height=600,top=60,left=100,scrollbars,resizable')  style='CURSOR: hand'>"+i.ToString()+"</a>"+
    "</TD>");