js打开新页面.关闭当前页.关闭父页面 2010-04-29 14:04:13|  分类: 页面与JavaScript |  标签: |字号大中小 订阅     //关闭当前页面,并且打开新页面,(不提示) function closeWinAndOpen(url) { var sWinName = "LR"+parseInt(Math.random() * 100000000);//利用随机数处理WinName window.open(url,sWinName, 'toolbar=n…
this.Page.ClientScript.RegisterStartupScript(this.Page.GetType(), "", "<script>Ceshi();</script>", true); 这句代码与下面这段代码放一起,不管是插在哪里,这句代码都无效,无法调用js 注释掉 Page.Response.Clear(); Page.Response.AppendHeader("Content-Disposition…
当在一个窗体中调用另一个窗体时,涉及到子窗体关闭的同时,父窗体同时关闭. 例如: 在窗体1中,单击按钮调用窗体2,通过this传递 private void button1_Click(object sender, EventArgs e) { Form2 frm2 = new Form2(this); frm2.Show(); } 在窗体2中,接收传递过来的参数,单击按钮关闭窗体1 Form1 frm1 = null; public Form2(Form1 frm) { InitializeC…
js 中调用后台方法   一.用Response.Write方法 Response.Write("<script type='text/javascript'>alert("XXX");</script>"); 此方只能调用内部函数,具体调用自定义的函数只能在Response.Write写上函数定 义,比如 Response.Write("<script type='text/javascript'>function m…
<html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title></title> <script src="JS/jquery.js" type="text/javascript"></script> <script type=&…
1. 用Response.Write方法 代码如下: Response.Write("<script type='text/javascript'>alert("XXX");</script>"); 此方法缺陷就是不能调用脚本文件中的自定义的函数,只能调用内部函数,具体调用自定义的函数只能在Response.Write写上函数定 义,比如 Response.Write("<script type='text/javascrip…
a.html中打开一个新页面b.html,b.html页面给a.html中的input传一个值并将value赋给input框. a.html: <html>  <head>   <script>    window.onload=c;    var str;    function c(){     str =window.showModalDialog("b.html","","dialogHeight=600px;d…
购物车实现逻辑简单.代码量也很少,具体细节就不说了,使用的时候,只要把MockDB类稍微改改,因为它是商品数据入口,为实现分布式部署,实际应用时可以更改为从服务调用,如:Web Service.WCF等,这样就可以把这个购物车嵌入到已有系统去了. 下载:ShoppingCart.zip…
示例控制器: public ActionResult Index()        {            ViewBag.js = "<script type='text/javascript'>alert('abc');</script>";            return View();        } 页面: <html><head>    <title>Demo</title></head&…
应用window.open,可以弹出新窗口, window.open('path', 'windowName', 'windowSetting' ) window.open("./a.html","","height=200,width=300,top=100,left=100resizable=yes") window.open 弹出新窗口的命令: 'page.html' 弹出窗口的文件名: 'newwindow' 弹出窗口的名字(不是文件名)…