`
xuning227
  • 浏览: 75912 次
  • 性别: Icon_minigender_1
  • 来自: 新疆
文章分类
社区版块
存档分类
最新评论
文章列表
录入测试数据的好方法         //BLL.CategoryManager cm = new BLL.CategoryManager();         //添加类别         //for (int i = 1; i < 6;i++ )         //{         //    cm.Insert("类别"+i);         //}         //添加新闻标题,内容,评论         //Random ra = new Random();         //BLL.NewsManager nm = new BLL.Ne ...
<%#Eval ("userIp").ToString().Substring(0,Eval("userIp").ToString().LastIndexOf(".")+1)+* %> 解释上面的代码:    string str = "123.2.2.4"; // Response.Write(str.LastIndexOf(".")); //输出7;123.2.2.   注意:是(01234567)最后一个.刚好在第7个位置上。             str = str ...
1.代码乱了,需要格式代码一下: ctrl + e,d 和  crtl k+crtl d 2.代码太长:当代码超过一行,就让代码自动换行。 工具----选项----文本编辑器----选中用的语言(例如c#)---自动换行 3.想把一大段一大段的代码折叠起来,很整齐的方法 ctrl k+x 插入代码段----选c#,再选region----折叠注释。 #endregion 4.关于加了TODO的代码段 视图---任务列表--看到加了TODO的代码段。
1.Response.Redirect("~/searcher.aspx");  这个符号 ~直接到根目录。重要!
private SqlConnection conn = null; private SqlCommand cmd = null; private SqlDataReader sdr = null;             /// SQLHelper()用来连接数据库。              public SQLHelper()         {             string connStr = ConfigurationManager.ConnectionStrings["connStr"].ConnectionString;             ...
  protected void LoginOut(object sender, EventArgs e)         {             FormsAuthentication.SignOut();             Response.Redirect("~/index.aspx");         }
cs页面调用: Xuning.shop.Utility.tool.execjs("if(confirm('商品添加成功,是否跳转到购物车页面')){location.href='shopcart.aspx'}else{location.href='"+Request.Url.ToString()+"'}", this.Page);             写在类中的方法:   /// &lt;summary&gt;         /// 后台执行js代码         /// &lt;/summary&gt;   ...
建立一个类:shop public  class shop     {         private int proid;//         public int Proid         {             get { return proid; }             set { proid = value; }         }           } 第一个属性proid(右键)---重构--封装字段
   protected void rep_ItemDataBound(object sender, RepeaterItemEventArgs e)         {             if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)             {                 HiddenField hfproid = e.Item.FindControl("hfproid") as HiddenFi ...
OnClientClick='return confirm("确认删除")' OnClick="DEl" 客户端执行的方法 返回true 才会执行 服务器端的OnClick方法。
Response.Redirect(Request.Url.ToString());
1. int y = fdao.count(" username='"+User.Identity.Name+"' and proid="+proid); int x = fdao.count(" username="+User.Identity.Name);   2.判断用于登录的了没有 if(!User.Identity.IsAuthenticated)             {                 Xuning.shop.Utility.tool.Alert("用户没有登录呢& ...
html: <linkbutton id="LinkButton1" runat="server" onclick="my_favorate" commandargument='&lt;%#Eval("id")%&gt;'> cs: string proid = (sender as LinkButton).CommandArgument;</linkbutton>
using System.Web.Security; //退出 protected void lbtnLoginOut_Click(object sender, EventArgs e) { FormsAuthentication.SignOut(); Response.Redirect("~/index.aspx"); }
// 获取本周的周一        public string GetThisWeekMonday()        {            DateTime date = DateTime.Now;            DateTime first = System.DateTime.Now;            switch (date.DayOfWeek)            {                case System.DayOfWeek.Monday:                    first = date;                    break ...
Global site tag (gtag.js) - Google Analytics