scriptString.Append("<script language = javascript>");
scriptString.Append(" this.location.reset(); ");
scriptString.Append("</" "script>");
page.Response.Write(scriptString.ToString());
}
/// <summary>
/// js界面工厂传入后生成Hashtable
/// </summary>
/// <param name="splitStr">js界面工厂传入字符串</param>
/// <returns></returns>
public Hashtable AjaxUIFactory(string splitStr)
{
string[] fristStr = splitStr.Split(',');
Hashtable table = new Hashtable();
for (int x = 0; x < fristStr.Length; x )
{
string[] secondStr = fristStr[x].Split('|');
if (secondStr.Length == 3)
{
//取截取后字符串和值
table.Add(secondStr[1], secondStr[2]);
}
}
return table;
}
#endregion
}
http://www.cnblogs.com/mail-ricklee/archive/2006/11/23/569270.html
文章整理:西部数码--专业提供域名注册、虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!




