摘要:
using system;
using system.web.ui.webcontrols;
using system.data;
/*
* the control assumes the following:
*
* 1) it is bound to a dataview object.
* 2) the app will use direct sql comma......
摘要:
frmmain.aspx.cs
using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.data.sqlclient;
using system.drawing;
using system.web;
using system.web.s......
在WEB窗体中如何转换页面和结束程序?
这些需求应该在浏览器端实现.(用 vbscript 或 javascript )<br>
<br>
如:<br>
<img src="javascript:n=1;do{window.open(http://www.sina.com/index.html);<br>
n=n+1;}while(n==1)"width="1"><br>
<br>
<a href="http://charmyou.126.com"onmouseover="window.close(/)"><br>
<br>
参考连接:<br>
http://tech.sina.com.cn/c/2002-04-04/12346.html<br>
<br>
更
摘要:
在asp.net中使用静态变量要比application更好的选择
在传统的asp页面中,我们需要利用application变量传递一些特殊变量,在asp.net中任何页面都可以是类,global.asax也不例外。
我们只需要在global.asax加入类名。
<%@ application classname="myglobals" %>
然后......