摘要:
1、用字符串分隔: using System.Text.RegularExpressions; string str="aaajsbbbjsccc"; string[] sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase); foreach (string i in sArray) Response.Write(i.ToString(... 阅读全文
摘要:
如果下面的代码有错误或者有不懂的地方可以联系QQ:41305987 Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->usingSystem; usingSystem.Collections.Generic; usingSyst... 阅读全文
摘要:
今天学socket,做了一个简单的聊天的程序。出现了这个错误 错误大体是说对window窗体控间进行线程安全调用的问题,解决的方法是: 在winform的page_load加上 System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false; ... 阅读全文
摘要:
一、Content Management System(内容管理系统) 简介 CMS是Content Management System的缩写,意为“内容管理系统”。 CMS具有... 阅读全文
摘要:
void Page_load(object sender,EventArgs e) { string s="hehe"; string s1=System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(s,"sha1"); Response.Write(s1); R... 阅读全文
摘要:
asp.net里获取当前时间,并输出需要格式2007年12月08日 星期六 23:13asp.net里获取当前时间,并字符串格式化转换2007-12-03 00:051.string strTime = DateTime.Now.ToLongTimeString(); -------------------------------------------------------------... 阅读全文
摘要:
最近忙个项目,在查询某个表中是否有数据的时候,我用了ExecuteNonQuery(),并通过判断值是否大于0来判断数据的存在与否。结果与我所设想的很不一致,调试时才发现,其执行后返回的结果是-1,对此我很是不理解,回头查了下资料,如下显示: SqlCommand.ExecuteNonQuery 方法对连接执行 Transact-SQL 语句并返回受影响的行数。备注:可以使用 Execute... 阅读全文