摘要:
usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;usingSystem.Web.Caching;///summary///用于动态加载CSS,解决母版页无法改变CSS的问题////summarypubli 阅读全文
摘要:
一、认识Web.config文件 Web.config 文件是一个XML文本文件,它用来储存 ASP.NET Web 应用程序的配置信息(如最常用的设置ASP.NET Web 应用程序的身份验证方式),它可以出现在应用程序的每一个目录中。当你通过.NET新建一个Web应用程序后,默认情况下会在根目录自动创建一个默认的 Web.config文件,包括默认的配置设置,所有的子目录都继承它的配置设置。如果你想修改子目录的配置设置,你可以在该子目录下新建一个 Web.config文件。它可以提供除从父目录继承的配置信息以外的配置信息,也可以重写或修改父目录中定义的设置。 (一).Web.Config是 阅读全文
摘要:
第一种方法: string sqlstr = "DATA SOURCE=127.0.0.1,1433;Password=123;UID=sa"; string cmdstr = "SELECT * FROM admin"; SqlConnection conn = new SqlConnection(sqlstr); SqlCommand cmd = new SqlCommand(cmdstr, conn); SqlDataReader rdr = cmd.ExecuteReader(); if(rdr!=null) { DropDownList1.DataSource = rd 阅读全文
摘要:
/// <summary> /// 上传生成缩略图 /// </summary> /// <param name="FileUpload1">上传文件控件</param> /// <param name="uploadFile">上传文件夹如"file/"</param> /// <param name="ytName"... 阅读全文
摘要:
设定BoundField的DataFormatString,通常有以下几种 DataFormatString= "{0:C}" 货币,货币的格式取决于当前Thread中Culture的设置 DataFormatString= "{0:E}" 科学计数法 DataFormatString= "{0: P}" 百分比 DataFormatString= "{0:F?}" 小数点后几位 DataForm... 阅读全文
摘要:
//查詢按鈕protectedvoidbtnQue_Click(objectsender,EventArgse){this.tableInfo.Visible=true;SqlConnectionsqlconn=newSqlConnection("server=localhost;database=db;uid=uid;pwd=pwd;");sqlconn.Open();SqlDataAdapte... 阅读全文
摘要:
//1使用REPEATER控件显示数据(指定字段显示)RepeaterBind.DataSource=ds.Tables["testTable"];RepeaterBind.DataBind();<asp:Repeaterid="RepeaterBind"runat="server"><ItemTemplate><li><%#DataBinder.Eval... 阅读全文
摘要:
//设为首页 <span onclick="var strHref=window.location.href;this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.google.cn');" style="CURSOR: hand">设为首页</span>//加入收藏 <a ... 阅读全文