asp.net 屏蔽 只能 是数字
//数字字符
public static string KeepNum(string str)
{
char[] tmp = new char[str.Length];
char[] s = str.ToCharArray();
for (int i = 0, j = 0; i < str.Length; i++)
{
if (s[i] >= '0' && s[i] <= '9')
{
tmp[j] = s[i];
j++;
}
}
return new string(tmp);
}
<input type="text" id="mobile" runat="server" maxlength="12" onkeyup="value=value.replace(/[^\d]/g,'')" />
相关文档:
public static void SetEnterControl(System.Web.UI.Control Ctrl)
{
Page mPage = Ctrl.Page;
string mScript;
mScript = @"<script language=""jav ......
1. 打开新的窗口并传送参数:
传送参数:
response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")
接收参数:
string a = Request.QueryString("id");
string b = Request.QueryString("id1");
2.为按钮添加对话框
Button1 ......
Asp.Net中有一套与用户相关联的属性设置,可以通过在WebConfig里配置来直接使用,他的作用为
存储和使用唯一与用户对应的信息
展现个人化版本的Web应用程序
用户的唯一身份标识在再次访问时识别用户
Asp.Net Profile提供的跟用户相关的类型都是强类型
首先生成数据库脚本,使用Visual Studio 2005 命令提示,输入命 ......
一、获取当前文件的路径
1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
获取模块的完整路径,包括文件名。
2. System.Environment.CurrentDirectory
获取和设置当前目录(该进程从中启动的目录)的完全限定目录。 ......