Fork me on GitHub

随笔分类 -  代码

摘要:集合数据源主要包括ArrayList,Hashtabel,DataView,DataReader 阅读全文
posted @ 2014-12-08 09:38 乔闻 阅读(139) 评论(0) 推荐(0) 编辑
摘要:Text=''Page_Load{Page.DataBind();} 阅读全文
posted @ 2014-12-08 09:31 乔闻 阅读(428) 评论(0) 推荐(0) 编辑
摘要:usingSystem.IO;public partial calss _Default:SYstem.Web.UI.Page{ protected void Page _Load(object sender,EventArgs e) { //打开图片文件,并存在文件流中 FileS... 阅读全文
posted @ 2014-12-08 09:03 乔闻 阅读(287) 评论(0) 推荐(0) 编辑
摘要:Application.Lock();Application["Name"]="小亮"Application.UnLock();Response.Write("Application[\"Name\"]的值为:"+Application["Name"].ToString(); 阅读全文
posted @ 2014-12-04 13:19 乔闻 阅读(339) 评论(0) 推荐(0) 编辑
摘要:比较字符串:str1.CompareTo("abc");定位运算符:str1.IndexOf("abc");格式化运算符:?截取字符串:str.Substring(0,5);分裂字符串:str.Split('.','!');插入字符串:str.Insert(10,"beautiful");填充字符串... 阅读全文
posted @ 2014-12-04 13:08 乔闻 阅读(101) 评论(0) 推荐(0) 编辑
摘要:Cloud Zoom 阅读全文
posted @ 2014-12-02 15:29 乔闻 阅读(104) 评论(0) 推荐(0) 编辑
摘要:page.ClientScript.RegisterStartupScript(page.GetType(), "msg", ""); 阅读全文
posted @ 2014-12-02 14:55 乔闻 阅读(238) 评论(0) 推荐(0) 编辑
摘要:Server.HTMLEncode用法!!Server.HTMLEncodeHTMLEncode一.HTMLEncode 方法对指定的字符串应用 HTML 编码。语法Server.HTMLEncode( string )参数string指定要编码的字符串。示例脚本") %>输出The paragra... 阅读全文
posted @ 2014-12-02 14:48 乔闻 阅读(2107) 评论(0) 推荐(0) 编辑
摘要:DataTable myDt =dt; //删除列 myDt.Columns.Remove("minArea"); myDt.Columns.Remove("maxArea"); //调整列顺序 ,列排序从0开始 myDt.Columns["num"].SetOrdinal(1); //修改列标... 阅读全文
posted @ 2014-11-24 08:52 乔闻 阅读(135) 评论(0) 推荐(0) 编辑
摘要:Guid.NewGuid().ToString("N"); 阅读全文
posted @ 2014-11-24 08:51 乔闻 阅读(118) 评论(0) 推荐(0) 编辑
摘要:function ajaxFileUpload() { var File_box = document.getElementById('Download_file'); //var extend = File_box.value.substring(File_box.value.lastIndex... 阅读全文
posted @ 2014-11-24 08:50 乔闻 阅读(229) 评论(0) 推荐(0) 编辑
摘要:14 ? Eval("ArticleName").ToString().Substring(0, 14) +"..." : Eval("ArticleName").ToString()%> 阅读全文
posted @ 2014-11-24 08:49 乔闻 阅读(113) 评论(0) 推荐(0) 编辑
摘要:表示之后的\都不转义 阅读全文
posted @ 2014-11-24 08:46 乔闻 阅读(137) 评论(0) 推荐(0) 编辑
摘要:Response.Write(""); 阅读全文
posted @ 2014-11-24 08:44 乔闻 阅读(107) 评论(0) 推荐(0) 编辑
摘要:DBNull.Value 阅读全文
posted @ 2014-11-24 08:43 乔闻 阅读(186) 评论(0) 推荐(0) 编辑
摘要://返回ipv 地址 public static string GetIP4Address() { string IP4Address = String.Empty; foreach (IPAddress IPA in Dns.... 阅读全文
posted @ 2014-11-24 08:40 乔闻 阅读(249) 评论(0) 推荐(0) 编辑
摘要://获取前台传来的文件 HttpFileCollection files = HttpContext.Current.Request.Files; Stream st = files[0].InputStream; ... 阅读全文
posted @ 2014-09-17 15:24 乔闻 阅读(879) 评论(0) 推荐(0) 编辑
摘要:public void ReplaceString(string TargetString, string NewString){ string FileSrc = System.Web.HttpContext.Current.Server.MapPath("../admin/TextFile1.txt"); if (File.Exists(FileSrc)) { StreamReader sr ... 阅读全文
posted @ 2014-04-28 15:40 乔闻 阅读(154) 评论(0) 推荐(0) 编辑
摘要:DropDownList1.SelectedValue 阅读全文
posted @ 2014-04-24 14:12 乔闻 阅读(188) 评论(0) 推荐(0) 编辑
摘要:DDLName.DataSource = myRd;DDLName.DataTextField = "name";//要绑定的字段DDLName.DataValueField = "id";//要绑定的IDDDLName.DataBind(); 阅读全文
posted @ 2014-04-24 13:18 乔闻 阅读(141) 评论(0) 推荐(0) 编辑