11 2007 档案
摘要:We've all seen blogs and other web sites that seem to be able to intersperse hyperlinks throughout their content, almost whimsically, if the given text is "linkable", or, formatted like a domain name ...
阅读全文
摘要:1、首先下载AjaxPro 组件。并将AjaxPro.dll引用到网站(或项目)。 2、修改Web.config。在 元素中添加以下代码。 3、对AjaxPro在页Page_Load事件中进行运行时注册。如: protected void Page_Load(object sender, EventArgs e) { Ajax...
阅读全文
摘要:js类: /*************************************************************** * 作者:mousecat, mousecat4444@126.com * 版本:v1.3 * 修改记录: * (1)增加默认验证提示信息。 * (2)修改电话号码验证规则,使之符合086-010-87654321 * (3)简化类调用方式 * (4)简化描述...
阅读全文
摘要:asp.net中如何删除cookie? 不能直接删除用户计算机中的 Cookie。但是,可以通过将 Cookie 的到期日期设置为过去的日期,让用户的浏览器来删除 Cookie。当用户下一次向设置该 Cookie 的域或路径内的页发出请求时,浏览器将确定该 Cookie 已到期并将其移除。 调用 Cookies集合的 Remove方法可从服务器端的集合中移除 Cookie,使 Cookie...
阅读全文
摘要:得到本网站写的所有cookie 请参考 HttpCookie c; string subKeyName; string subKeyValue; for(int i = 0; i "); } } else Response.Write(c.Name + " " + c.Value + ""); }
阅读全文
摘要:log4net asp.net2.0
阅读全文
摘要:经验: 1.如何在客户端用JS获取及设置FreeTextBox的内容? 它提供了Javascript API 获取FTB内容 FTB_API['ctl00_ContentRegion_InputArticle1_FreeTextBox1'].GetHtml(); ctl00_ContentRegion_InputArticle1_FreeTextBox1是FreeTextBox的客户端ID...
阅读全文
摘要:举个例子,比如数据库中有如下数据 a1 a2 a3 a4 a5 1 a aaa a a 2 b bbb b b ...
阅读全文
摘要:/**//// /// 去除HTML标记 /// /// 包括HTML的源码 /// 已经去除后的文字 public static string NoHTML(string Htmlstring) { //删除脚本 Htmlstring = Regex.Replac...
阅读全文
摘要:Adding OnClick property to dynamicly genertated html element function klik(){ alert("ppp"); } function addNewImg(newImageId){ newImg = document.createelement('img'); newImg.id = "image"+newImag...
阅读全文
摘要:PHP Code: http://www.haqoo.com * */ $blog = new Sina_Blog; $blog->init(); $user="showmygod"; $pass="你的新浪密码"; if($blog->login($user,$pass)){ echo "登录成功\n"; }else{ die("用户名或者密码错误");...
阅读全文
摘要:POSTing data As I mentioned earlier POST data is important in Web request applications and getting the data into the proper format for posting can be tricky requiring possibly a fair amount of code. w...
阅读全文
摘要:The following procedure describes the steps used to send data to a server. This procedure is commonly used to post data to a Web page. To send data to a host server Create a WebRequest inst...
阅读全文
摘要:Introduction I will briefly demonstrate how to upload multiple files using one HttpInputFile control - Hotmail style! Many developers have been asking how to upload multiple files at once. The ...
阅读全文
摘要:工具准备:VS2005. Subversion...
阅读全文
摘要:VS 2003在新建项目的时候还提供Web Application Projects ,但是在VS 2005中新建的时候无论是在C#中还是新建Web Site中都找不到Web Application Projects ,难道在VS2005中只能使用Web Site 了?难道Web Application Projects不如Web Site,好像不是这样吧。 好在MS发布了Visual Stud...
阅读全文
摘要:I need to render some html in my asp.net applications sometime, I chose HtmlTextWriter to build the html source because I can use those handy methods of this object such as RenderBeginTag, AddAttribut...
阅读全文
摘要:如何用一组双倍间距的句子创建一个连续的段落,然后将该段落重新转换为原来的文本: using System; using System.IO; class StringRW { static void Main() { string textReaderText = "TextReader is the abstract base " + "...
阅读全文
摘要:FreeTextBox使用详解 Author: Annerose Date:12/16/2005 版本: FreeTextBox 3.1.1 ASP.NET1.1 1.下载 FreeTextBox 3.1.1 (released 2005/11/08) http://www.freetextbox.com/downloads.aspx 2. 安装 FreeTextBox 3....
阅读全文
摘要:page controls 遍历
阅读全文
摘要:htmleditor
阅读全文
摘要:这是一个webservice private AppUpdate.UpdateServ UpdateSvr; private void button1_Click(object sender, System.EventArgs e) { if(LinkWebServices()==true) { this.label1.Text="连接服务器..........
阅读全文
摘要:urlrewriter
阅读全文
摘要:首先要熟悉.NET中处理文件和文件夹的操作。File类和Directory类是其中最主要的两个类。了解它们将对后面功能的实现提供很大的便利。 本节先对和文件系统相关的两个.NET类进行简要介绍。 System.IO.File类和System.IO.FileInfo类主要提供有关文件的各种操作,在使用时需要引用System.IO命名空间。下面通过程序实例来介绍其主要属性和方法。...
阅读全文
摘要:winrar ,zip,upzip,rar
阅读全文
摘要:作者:skyivben.来源:cnblogs 在fcl2.0中增加了system.io.compression命名空间, 用以进行文件压缩和解压操作,如下所示: using System; using System.IO; using System.IO.Compression; ...
阅读全文
摘要:作者:TerryLee ScriptManager控件包括在ASP.NET 2.0 AJAX Extensions中,它用来处理页面上的所有组件以及页面局部更新,生成相关的客户端代理脚本以便能够在JavaScript中访问Web Service,所有需要支持ASP.NET AJAX的ASP.NET页面上有且只能有一个ScriptManager控件。在ScriptManager控件中我们可以指定需...
阅读全文