51、app.config 连接字符串

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <startup>
  4. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  5. </startup>
  6. <appSettings>
  7. <add key="dmsFolder" value="C:\local.dfs.com\Data\DMS\" />
  8. </appSettings>
  9. <connectionStrings>
  10. <!--<add name="dfs" connectionString="user id=ProferoTest;password=mimaxxx;Data Source=127.0.0.1;Database=databesename" />-->
  11. <!--<add name="ConnectionString" connectionString="Data Source=.;Initial Catalog=ExpUsers;Persist Security Info=True;User ID=sa;password=mima;" providerName="System.Data.SqlClient" />-->
  12. <add name="ConnectionString" connectionString=" Data Source=.;Initial Catalog=UserExp2;Persist Security Info=True;User ID=sa;password=mima;" providerName="System.Data.SqlClient" />
  13. </connectionStrings>
  14. </configuration>

读取:

  1. string connString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString.ToString();

记得添加引用 using System.Configuration;

50、常用设计模式

savechange 设计模式:工作单元模式 :一个业务对多张表的操作,只连一次数据库,完成条记录的更新

简单工厂:返回父类或者接口的多种形态

抽象工厂:通过反射创建

单例:类似静态类  可以继承  扩展  延迟加载.....保证程序只new一次   比如队列 就可以放在单列里面

49、.net  常用 ORM框架

对象关系映射(英语:Object Relational Mapping,简称ORM,或O/RM,或O/R mapping),是一种程序技术,用于实现面向对象编程语言里不同类型系统的数据之间的转换。从效果上说,它其实是创建了一个可在编程语言里使用的“虚拟对象数据库”。

EF:Entity Framework

NHibernate

Linq

Dapper

PetaPoco

转自:http://zhan.renren.com/h5/entry/3602888498046723643

48、二维码生成

后台代码:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Web;
  7.  
  8. namespace JTZK_Handle
  9. {
  10. public class HandleEr
  11. {
  12. public static string GetEr()
  13. {
  14. string html = @"<div style=""text-align: center;border: solid 1px #cacaca; margin-top:20px"">
  15.  
  16. <p style=""border-bottom: solid 1px #cacaca; line-height: 40px;"">
  17. <img align=""middle"" src=""/images/weixinico.png"" />&nbsp;微信扫一扫,分享到朋友圈
  18. </p>
  19. <p style=""margin-bottom: 20px; margin-top: 20px;"">
  20. <img src=""http://s.jiathis.com/qrcode.php?url={0}"" width=""140"" height=""130"" />
  21. </p>
  22. </div>";
  23. return string.Format(html, HttpContext.Current.Request.Url.ToString());
  24. }
  25. }
  26. }

前台代码:

  1. <%=JTZK_Handle.HandleEr.GetEr() %>

47、.net 中const 与readonly的区别???

const和readonly都是只读的。
但是const修饰的变量必须在声明时赋值。
readonly修饰的变量可以在声明时或者构造函数里赋值。
private const double pi=3.14;
class A { private readonly int a; public A(int v) { a=v; } }

46、asp.net MVC 导出txt文件

  1. public ActionResult ExpData()
  2. {
  3. StringBuilder sb = new StringBuilder();
  4. string timeNow = DateTime.Now.ToString();
  5. Response.Clear();
  6. Response.Buffer = false;
  7. //通知浏览器 下载文件而不是打开
  8. Response.ContentType = "application/octet-stream";
  9. Response.AppendHeader("content-disposition", "attachment;filename=" + timeNow + ".txt;");
  10. var operLogList = operLogBLL.LoadEntities(o=>o.IsValid==);
  11. foreach (var item in operLogList)
  12. {
  13.  
  14. sb.Append("时间:" + item.CreateTime.ToString() + "\n");
  15. sb.Append("类别:" + item.Category.ToString() + "\n");
  16. sb.Append("域:" + item.DomainID.ToString() + "\n");
  17. sb.Append("用户名:" + item.AccountName.ToString() + "\n");
  18. sb.Append("内容:" + item.Content.ToString() + "\n");
  19. sb.Append("--------------------------------------------------\n\n");
  20. }
  21.  
  22. Response.Write(sb);
  23. Response.Flush();
  24. Response.End();
  25.  
  26. return new EmptyResult();
  27. }
  1. //导出数据
  2. function ExpData() {
  3.  
  4. window.location.href = "/LogManager/ExpData";
  5. //MySuccess("导出成功!");
  6. };

45、评论插件

国外成功的案例是国内互联网创业者的风向标。在Disqus  http://disqus.com 获得巨大成功。在没美国很多网站都用此评论系统

社交评论插件的国内模仿者我见到的几家就是:

1、多说(http://www.duoshuo.com/ )

2、评论啦(http://www.pinglun.la/)

3、友言(http://uyan.cc/)

4、贝米(http://baye.me/)

44、动态解析二级域名

刚开始在网上找  看到了DomainRoute这个插件

按照教程弄了,确实好使 也能跑起来

可是之前的好多路由配置再改成这样的,不好改,而且这个这个没有控制器 和方法名的限制参数

而且这个插件和url转小写的插件不能一起用

最后还是打算自己在global里URL重写吧

--------------------------------------------------------------------------------------------------------------------------

请求报文  接收报文

http协议  返回的请求状态码

post请求  get请求

get请求接收 context.Request.QueryString["catalog"]

post请求接收 context.Request.Form["catalog"]

Response.Redirect重定向

  1. context.Response.Redirect("UserInfoList.ashx");

文件上传 可以用文件流的MD5 或者GUID做标识,时间不能唯一不建议

webform调用后台 变量方法

  1. <strong>.在前台html控件调用c#后台变量。</strong>
  2. 在后台的类代码里定义一个字符串。如
  3. public partial class Index : System.Web.UI.Page
  4. {
  5. public string msg = "";
  6. }
  7. 然后可以写方法改变此字符串的值。
  8. 前台调用也很简单:
  9. <input id="Text1" type="text" value="<%=msg%>"/>
  10. <strong>.在前台html调用c#后台方法</strong>
  11. 后台有一个方法:
  12. public string test()
  13. {
  14. return "message";
  15. }
  16. 前台代码:
  17. <input id="Text2" type="text" value="<%=test()%>"/>
  18. <strong>.在前台js里调用c#后台变量</strong>
  19. 后台代码:
  20. public partial class Index : System.Web.UI.Page
  21. {
  22. public string msg = "";
  23. }
  24. 前台代码:
  25. <script>alert("<%=msg%>");</script>
  26. <strong>.在前台js里调用c#后台变量</strong>
  27. 后台有一个方法:
  28. public string test()
  29. {
  30. return "message";
  31. }
  32. 前台代码:
  33. <script>alert("<%=test() %>");</script>
  34. <strong>,前台js里调用后台带参数的方法</strong>
  35. public string test(string a)
  36. {
  37. return a+",我是参数传进来的";
  38. }
  39. <script>alert("<%=test("") %>");</script>
  40. <strong>,前台js里调用后台带参数的方法</strong>
  41. //商品信息
  42. function getProInfo(t) {
  43. var result = "";
  44. result = MallPowerSite.order.ChangeOrderEdit.GetProductInfo(t).value;//后台的方法,注意这里不用双引号
  45. return result;
  46. }

值得注意的是,要在js中调用C#的变量和函数返回的结果,js代码必须写在页面的<script>...</script>中,而不能写在独立的*.js文件中,这样会js会将*.js的C#代码作为字符串处理,而不是变量或者方法。

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserInfoList.aspx.cs" Inherits="CZBK.ItcastProject.WebApp._2015_5_29.UserInfoList" %>
  2. <!DOCTYPE html>
  3. <%@ Import Namespace="CZBK.ItcastProject.Model" %>
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head runat="server">
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  7. <title></title>
  8. <script type="text/javascript">
  9. window.onload = function () {
  10. var datas = document.getElementsByClassName("deletes");
  11. var dataLength = datas.length;
  12. for (var i = 0; i < dataLength; i++) {
  13. datas[i].onclick = function () {
  14. if (!confirm("确定要删除吗?")) {
  15. return false;
  16. }
  17. }
  18. }
  19. };
  20. </script>
  21. <link href="../Css/tableStyle.css" rel="stylesheet" />
  22. </head>
  23. <body>
  24. <form id="form1" runat="server">
  25. <div>
  26. <a href="AddUserInfo.aspx">添加用户</a>
  27. <table> <tr><th>编号</th><th>用户名</th><th>密码</th><th>邮箱</th><th>时间</th><th>删除</th><th>详细</th><th>编辑</th></tr>
  28. <%-- <%=StrHtml%>--%>
  29. <% foreach(UserInfo userInfo in UserList){%>
  30.  
  31. <tr>
  32. <td><%=userInfo.Id %></td>
  33. <td><%=userInfo.UserName %></td>
  34. <td><%=userInfo.UserPass %></td>
  35. <td><%=userInfo.Email %></td>
  36. <td><%=userInfo.RegTime.ToShortDateString() %></td>
  37. <td><a href="Delete.ashx?id=<%=userInfo.Id %>" class="deletes">删除</a></td>
  38. <td>详细</td>
  39. <td><a href="EditUser.aspx?id=<%=userInfo.Id %>">编辑</a> </td>
  40. </tr>
  41.  
  42. <%} %>
  43. </table>
  44. <hr />
  45.  
  46. </div>
  47. </form>
  48. </body>
  49. </html>
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Fdcxm_Mx.aspx.cs" Inherits="WebApplication.Fdc.Fdcxm_Mx" %>
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head id="Head1" runat="server">
  5. <title></title>
  6. <link href="/Css/FDC.css" type="text/css" rel="stylesheet" />
  7. </head>
  8. <body>
  9. <table border="0" cellspacing="1">
  10. <tr>
  11. <td colspan="6" align="center" valign="middle" class="title_0">
  12. <%=this.XmFdcInfo.XmName%>
  13. </td>
  14. </tr>
  15. </table>
  16. <table border="0" cellspacing="1">
  17. <tr>
  18. <td align="center" valign="middle" class="title_1">
  19. 税款属期
  20. </td>
  21. <td align="center" valign="middle" class="title_1">
  22. 项目固定信息数据申报表
  23. </td>
  24. <td align="center" valign="middle" class="title_1">
  25. 项目按月信息数据申报表
  26. </td>
  27. <td align="center" valign="middle" class="title_1">
  28. 施工企业报送数据申报表
  29. </td>
  30. </tr>
  31. <tbody id="tab">
  32. <tr>
  33. <td align="center" valign="middle">
  34. <%=Convert.ToDateTime(this.YYS_SKSQ).ToString("yyyy-MM")%>
  35. </td>
  36. <td align="center" valign="middle">
  37. <a href="#" onclick="top.frames['MainFrame'].WinClose1('/Fdc/Jcxx.aspx?YYS_SKSQ=<%=this.YYS_SKSQ %>&XM_CODE=<%=this.XmFdcInfo.XmCode%>', '<%=this.XmFdcInfo.XmName%>房地产固定信息');">
  38. <%if (this.GDSB_SH_JG == "审核未通过" || this.GDSB_SH_JG == "")
  39. { %>数据申报<%} %><%else
  40. { %>数据修改<%} %></a>
  41. </td>
  42. <td align="center" valign="middle">
  43. <%if (this.GDSB_SH_JG == "审核已通过")
  44. { %>
  45. <a href="#" onclick="top.frames['MainFrame'].WinClose1('/Fdc/AysbMx.aspx?YYS_SKSQ=<%=this.YYS_SKSQ %>&XM_CODE=<%=this.XmFdcInfo.XmCode%>', '<%=this.XmFdcInfo.XmName%>按月数据申报信息');">
  46. <%if (this.AYSB_SH_JG == "审核未通过" || this.AYSB_SH_JG == "")
  47. { %>数据申报<%} %><%else
  48. { %>数据修改<%} %></a>
  49. <%}
  50. else
  51. { %>数据申报<%} %>
  52. </td>
  53. <td align="center" valign="middle">
  54. <%if (AYSB_SH_JG == "审核已通过" && this.GDSB_SH_JG == "审核已通过" && this.XmFdcInfo.XmZt != "尾盘")
  55. { %>
  56. <a href="#" onclick="top.frames['MainFrame'].WinClose1('/Fdc/SGDW.aspx?YYS_SKSQ=<%=this.YYS_SKSQ %>&XM_CODE=<%=this.XmFdcInfo.XmCode%>', '<%=this.XmFdcInfo.XmName%>报送施工企业信息');">
  57. <%if (this.SGDW_SH_JG == "审核未通过" || this.SGDW_SH_JG == "")
  58. { %>数据申报<%} %><%else
  59. { %>数据修改<%} %></a>
  60. <%}
  61. else
  62. { %>数据申报<%} %>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td align="center" valign="middle" class="title_1">
  67. 历史数据
  68. </td>
  69. <td align="center" valign="middle" class="title_1">
  70. 项目固定信息数据申报表
  71. </td>
  72. <td align="center" valign="middle" class="title_1">
  73. 项目按月信息数据申报表
  74. </td>
  75. <td align="center" valign="middle" class="title_1">
  76. 施工企业报送数据申报表
  77. </td>
  78. </tr>
  79. <%=this.Output%>
  80. </tbody>
  81. </table>
  82. <script type="text/javascript" language="JavaScript">
  83. function a() {
  84. alert("项目固定信息数据申报表,错误,请修改!");
  85. TopView();
  86. }
  87. function TopView(){
  88.  
  89. top.ymPrompt.close();
  90. top.ymPrompt.win({ message: '<div style="width:900px;height:550px;overflow-x: scroll;overflow-y: scroll;"><iframe id="MenuFrame" src="Fdc/AysbMx.aspx" height="100%" width="100%" frameborder="0" ></iframe></div>', width: 905, height: 580, title: "项目固定信息数据申报表", iframe: false, closeBtn: true, dragOut: false });
  91. }
  92.  
  93. <!--
  94. var Ptr=document.getElementById("tab").getElementsByTagName("tr");
  95. function $() {
  96. for (i=1;i<Ptr.length+1;i++) {
  97. Ptr[i-1].className = (i%2>0)?"t1":"t2";
  98. }
  99. }
  100. window.onload=$;
  101. for(var i=0;i<Ptr.length;i++) {
  102. Ptr[i].onmouseover=function(){
  103. this.tmpClass=this.className;
  104. this.className = "t3";
  105.  
  106. };
  107. Ptr[i].onmouseout=function(){
  108. this.className=this.tmpClass;
  109. };
  110. }
  111. //-->
  112.  
  113. </script>
  114. </body>
  115. </html>

什么时候用aspx  是时候用ashx(一般处理程序)

建议:

如果有复杂的界面布局用aspx

如果没有布局例如删除,用ashx,或者返回json数据

15、

如果往本页即post又get请求,可以在form里放一个隐藏域(input)

如果有 runat="server" 就自动添加隐藏域,判断的时候 直接判断if(isPostBack)就可以了

  1. <body>
  2. <form id="form1" runat="server">
  3. <div>
  4. 用户名:<input type="text" name="txtName" /><br />
  5. 密码:<input type="password" name="txtPwd" /><br />
  6. 邮箱:<input type="text" name="txtMail" /><br />
  7. <%-- <input type="hidden" name="isPostBack" value="aaa" />--%>
  8. <input type="submit" value="添加用户" />
  9.  
  10. </div>
  11.  
  12. </form>
  13. </body>

16、分页

sql中的over函数和row_numbert()函数配合使用,可生成行号。可对某一列的值进行排序,对于相同值的数据行进行分组排序。

执行语句:

  1. select row_number() over(order by AID DESC) as rowid,* from bb

dao

  1. /// <summary>
  2. /// 根据指定的范围,获取指定的数据
  3. /// </summary>
  4. /// <param name="start"></param>
  5. /// <param name="end"></param>
  6. /// <returns></returns>
  7. public List<UserInfo> GetPageList(int start,int end)
  8. {
  9. string sql = "select * from(select *,row_number()over(order by id) as num from UserInfo) as t where t.num>=@start and t.num<=@end";
  10. SqlParameter[] pars = {
  11. new SqlParameter("@start",SqlDbType.Int),
  12. new SqlParameter("@end",SqlDbType.Int)
  13. };
  14. pars[].Value = start;
  15. pars[].Value = end;
  16. DataTable da=SqlHelper.GetDataTable(sql, CommandType.Text, pars);
  17. List<UserInfo> list = null;
  18. if (da.Rows.Count > )
  19. {
  20. list = new List<UserInfo>();
  21. UserInfo userInfo = null;
  22. foreach (DataRow row in da.Rows)
  23. {
  24. userInfo = new UserInfo();
  25. LoadEntity(userInfo, row);
  26. list.Add(userInfo);
  27. }
  28. }
  29. return list;
  30.  
  31. }
  32. /// <summary>
  33. /// 获取总的记录数
  34. /// </summary>
  35. /// <returns></returns>
  36. public int GetRecordCount()
  37. {
  38. string sql = "select count(*) from UserInfo";
  39. return Convert.ToInt32(SqlHelper.ExecuteScalar(sql,CommandType.Text));
  40. }
  41.  
  42. private void LoadEntity(UserInfo userInfo, DataRow row)
  43. {
  44. userInfo.UserName = row["UserName"] != DBNull.Value ? row["UserName"].ToString() : string.Empty;
  45.  
  46. userInfo.UserPass = row["UserPass"] != DBNull.Value ? row["UserPass"].ToString() : string.Empty;
  47. userInfo.Email = row["Email"] != DBNull.Value ? row["Email"].ToString() : string.Empty;
  48. userInfo.Id = Convert.ToInt32(row["ID"]);
  49. userInfo.RegTime = Convert.ToDateTime(row["RegTime"]);
  50. }

bll

  1. /// <summary>
  2. /// 计算获取数据的访问,完成分页
  3. /// </summary>
  4. /// <param name="pageIndex">当前页码</param>
  5. /// <param name="pageSize">每页显示的记录数据</param>
  6. /// <returns></returns>
  7. public List<UserInfo> GetPageList(int pageIndex,int pageSize)
  8. {
  9. int start=(pageIndex-)*pageSize+;
  10. int end = pageIndex * pageSize;
  11. return UserInfoDal.GetPageList(start, end);
  12.  
  13. }
  14. /// <summary>
  15. /// 获取总的页数
  16. /// </summary>
  17. /// <param name="pageSize">每页显示的记录数</param>
  18. /// <returns></returns>
  19. public int GetPageCount(int pageSize)
  20. {
  21. int recoredCount = UserInfoDal.GetRecordCount();//获取总的记录数.
  22. int pageCount =Convert.ToInt32(Math.Ceiling((double)recoredCount / pageSize));
  23. return pageCount;
  24. }

aspx

  1. using CZBK.ItcastProject.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Web;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9.  
  10. namespace CZBK.ItcastProject.WebApp._2015_5_30
  11. {
  12. public partial class NewList : System.Web.UI.Page
  13. {
  14. public string StrHtml { get; set; }
  15. public int PageIndex { get; set; }
  16. public int PageCount { get; set; }
  17. protected void Page_Load(object sender, EventArgs e)
  18. {
  19. int pageSize=;
  20. int pageIndex;
  21. if(!int.TryParse(Request.QueryString["pageIndex"],out pageIndex))
  22. {
  23. pageIndex=;
  24. }
  25. BLL.UserInfoService UserInfoService = new BLL.UserInfoService();
  26. int pagecount = UserInfoService.GetPageCount(pageSize);//获取总页数
  27. PageCount = pagecount;
  28. //对当前页码值范围进行判断
  29. pageIndex = pageIndex < ? : pageIndex;
  30. pageIndex = pageIndex > pagecount ? pagecount : pageIndex;
  31. PageIndex = pageIndex;
  32. List<UserInfo>list= UserInfoService.GetPageList(pageIndex,pageSize);//获取分页数据
  33. StringBuilder sb = new StringBuilder();
  34. foreach (UserInfo userInfo in list)
  35. {
  36. sb.AppendFormat("<li><span>{0}</span><a href='#' target='_blank'>{1}</a></li>",userInfo.RegTime.ToShortDateString(),userInfo.UserName);
  37. }
  38. StrHtml = sb.ToString();
  39. }
  40. }
  41. }

pagebarHelper

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Common
  8. {
  9. public class PageBarHelper
  10. {
  11. public static string GetPagaBar(int pageIndex, int pageCount)
  12. {
  13. if (pageCount == )
  14. {
  15. return string.Empty;
  16. }
  17. int start = pageIndex - ;//计算起始位置.要求页面上显示10个数字页码.
  18. if (start < )
  19. {
  20. start = ;
  21. }
  22. int end = start + ;//计算终止位置.
  23. if (end > pageCount)
  24. {
  25. end = pageCount;
  26. //重新计算一下Start值.
  27. start = end - < ? : end - ;
  28. }
  29. StringBuilder sb = new StringBuilder();
  30. if (pageIndex > )
  31. {
  32. sb.AppendFormat("<a href='?pageIndex={0}' class='myPageBar'>上一页</a>", pageIndex - );
  33. }
  34. for (int i = start; i <= end; i++)
  35. {
  36. if (i == pageIndex)
  37. {
  38. sb.Append(i);
  39. }
  40. else
  41. {
  42. sb.AppendFormat("<a href='?pageIndex={0}' class='myPageBar'>{0}</a>",i);
  43. }
  44. }
  45. if (pageIndex < pageCount)
  46. {
  47. sb.AppendFormat("<a href='?pageIndex={0}' class='myPageBar'>下一页</a>", pageIndex + );
  48. }
  49.  
  50. return sb.ToString();
  51. }
  52. }
  53. }
  1. <%=Common.PageBarHelper.GetPagaBar(PageIndex,PageCount)%>

17、http协议 request response server成员

http协议 超文本传输协议 包括请求响应报文  请求报文包括请求头 请求内容

request 成员

Files 接受文件 Request.Files["FileName"]

UrlReferrer 请求的来源

Url 请求的网址

UserHostAddress 访问者IP

Cookie 浏览器Cookie

MapPath 虚拟路径转物理路径 ../2016/hello.aspx -->E:\web\2016\hello.aspx

response 成员

Flush() 将缓冲区中的数据发送给用户

Clear() 清空缓冲区

ContentEncoding 输出流的编码

ContentType 输出流的内容类型 HTML(text/html)  普通文本(text/plain)  jpeg (image/JPEG)

server成员

Server.Transfer("Child.aspx")

Server.Execute("Child.aspx");

这两个是一样的 都是在后台访问其他的页面 达到ifram的效果

与Response.Redirect的区别。Transfer:服务端跳转,不会向浏览器返回任何内容,所以地址栏中的URL地址不变。

Server.HtmlEncode("<font color='red'></font>")

18、XSS跨站攻击

比如评论的时候,没有编码,别人写了JavaScript代码,直接可以跳转到别的网站

注释

服务器注释 不会显示到HTML <%--这是注释内容--%>

显示到HTML里 <!--这是注释内容-->

19、viewstate

当我们在写一个asp.net表单时, 一旦标明了 form runat=server ,那么,asp.net就会自动在输出时给页面添加一个隐藏域

<input type="hidden" name="__VIEWSTATE" value="">
 MVC中没有
viewstate赋值
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7.  
  8. namespace CZBK.ItcastProject.WebApp._2015_5_30
  9. {
  10. public partial class ViewStateDemo : System.Web.UI.Page
  11. {
  12. public int Count { get; set; }
  13. protected void Page_Load(object sender, EventArgs e)
  14. {
  15. int count = ;
  16. if (ViewState["count"] != null)
  17. {
  18. count = Convert.ToInt32(ViewState["count"]);
  19. count++;
  20. Count = count;
  21. }
  22. ViewState["count"] = Count;//当我们把数据给了ViewState对象以后,该对象会将数据进行编码,然后存到__VIEWSTATE隐藏域中,然后返回给浏览器。
  23. //当用户通过浏览器单击“提交”按钮,会向服务端发送一个POST请求那么__VIEWSTATE隐藏域的值也会提交到服务端,那么服务端自动接收__VIEWSTATE隐藏域的值,并且再反编码,重新赋值给ViewState对象。
  24. }
  25. }
  26. }
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ViewStateDemo.aspx.cs" Inherits="CZBK.ItcastProject.WebApp._2015_5_30.ViewStateDemo" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  8. <title></title>
  9. </head>
  10. <body>
  11. <form id="form1" runat="server">
  12. <div>
  13.  
  14. <span><%=Count%></span>
  15. <input type="submit" value="计算" />
  16. </div>
  17. </form>
  18. </body>
  19. </html>

20、cookie

存在浏览器中  指定时间:存在硬盘中,关闭浏览器也会存在,不指定时间存在浏览器内存中,关闭就没了

21、session

浏览器关闭就不见了  因为ID是一cookie的形式存在浏览器之前传送,没有指定过期时间,存在浏览器内存中

22、page_init()

和page_Load()一样都是自动执行,不过这个在page_Load之前执行

统一的验证:写一个pagebase继承system.web.UI.page  然后在Page_Init()方法里写验证

23、自动登录实现原理

如果勾选了自动登录,把用户名和密码存在cookie中 记得加密,下次登录的时候直接进入get请求,给session赋值

 http://www.liaoxuefeng.com/article/00146129217054923f7784c57134669986a8875c10e135e000

  1. using CZBK.ItcastProject.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8.  
  9. namespace CZBK.ItcastProject.WebApp._2015_5_31
  10. {
  11. public partial class UserLogin : System.Web.UI.Page
  12. {
  13. public string Msg { get; set; }
  14. public string UserName { get; set; }
  15. protected void Page_Load(object sender, EventArgs e)
  16. {
  17. if (IsPostBack)
  18. {
  19. //string userName = Request.Form["txtName"];
  20. //UserName = userName;
  21. if (CheckValidateCode())//先判断验证码是否正确.
  22. {
  23. CheckUserInfo();
  24. }
  25. else
  26. {
  27. //验证码错误
  28. Msg = "验证码错误!!";
  29.  
  30. }
  31. }
  32. else
  33. {
  34. //判断Cookie中的值。自动登录
  35. CheckCookieInfo();
  36. }
  37.  
  38. }
  39. #region 判断用户名密码是否正确
  40. protected void CheckUserInfo()
  41. {
  42. //获取用户输入的用户名和密码.
  43. string userName = Request.Form["txtName"];
  44. UserName = userName;
  45. string userPwd = Request.Form["txtPwd"];
  46. //校验用户名密码.
  47. BLL.UserInfoService UserInfoService = new BLL.UserInfoService();
  48. string msg = string.Empty;
  49. UserInfo userInfo = null;
  50. //判断用户名与密码
  51. if (UserInfoService.ValidateUserInfo(userName, userPwd, out msg, out userInfo))
  52. {
  53. //判断用户是否选择了“自动登录”
  54. if (!string.IsNullOrEmpty(Request.Form["autoLogin"]))//页面上如果有多个复选框时,只能将选中复选框的的值提交到服务端。
  55. {
  56. HttpCookie cookie1 = new HttpCookie("cp1",userName);
  57. HttpCookie cookie2 = new HttpCookie("cp2", Common.WebCommon.GetMd5String(Common.WebCommon.GetMd5String(userPwd)));
  58. cookie1.Expires = DateTime.Now.AddDays();
  59. cookie2.Expires = DateTime.Now.AddDays();
  60. Response.Cookies.Add(cookie1);
  61. Response.Cookies.Add(cookie2);
  62. }
  63.  
  64. Session["userInfo"] = userInfo;
  65. Response.Redirect("UserInfoList.aspx");
  66. }
  67. else
  68. {
  69. Msg = msg;
  70. }
  71. }
  72.  
  73. #endregion
  74.  
  75. #region 校验Cookie信息.
  76. protected void CheckCookieInfo()
  77. {
  78. if (Request.Cookies["cp1"] != null && Request.Cookies["cp2"] != null)
  79. {
  80. string userName = Request.Cookies["cp1"].Value;
  81. string userPwd = Request.Cookies["cp2"].Value;
  82. //校验
  83. BLL.UserInfoService UserInfoService = new BLL.UserInfoService();
  84. UserInfo userInfo=UserInfoService.GetUserInfo(userName);
  85. if (userInfo != null)
  86. {
  87. //注意:在添加用户或注册用户时一定要将用户输入的密码加密以后在存储到数据库中。
  88. if (userPwd == Common.WebCommon.GetMd5String(Common.WebCommon.GetMd5String(userInfo.UserPass)))
  89. {
  90. Session["userInfo"] = userInfo;
  91. Response.Redirect("UserInfoList.aspx");
  92. }
  93. }
  94. Response.Cookies["cp1"].Expires = DateTime.Now.AddDays(-);
  95. Response.Cookies["cp2"].Expires = DateTime.Now.AddDays(-);
  96. }
  97.  
  98. }
  99. #endregion
  100.  
  101. #region 判断验证码是否正确
  102. protected bool CheckValidateCode()
  103. {
  104. bool isSucess = false;
  105. if (Session["validateCode"] != null)//在使用Session时一定要校验是否为空
  106. {
  107. string txtCode = Request.Form["txtCode"];//获取用户输入的验证码。
  108. string sysCode = Session["validateCode"].ToString();
  109. if (sysCode.Equals(txtCode, StringComparison.InvariantCultureIgnoreCase))
  110. {
  111. isSucess = true;
  112. Session["validateCode"] = null;
  113. }
  114. }
  115. return isSucess;
  116. }
  117.  
  118. #endregion
  119. }
  120. }

24、request[""] 自动识别post get

POST GET:context.request["name"]  post:context.request.form["name"]  get:context.request.Querystring["name"]

25、手写异步请求

  1. <script type="text/javascript">
  2. $(function () {
  3. $("#btnGetDate").click(function () {
  4. //开始通过AJAX向服务器发送请求.
  5. var xhr;
  6. if (XMLHttpRequest) {//表示用户使用的高版本IE,谷歌,狐火等浏览器
  7. xhr = new XMLHttpRequest();
  8. } else {// 低IE
  9. xhr=new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhr.open("get", "GetDate.ashx?name=zhangsan&age=12", true);
  12. xhr.send();//开始发送
  13. //回调函数:当服务器将数据返回给浏览器后,自动调用该方法。
  14. xhr.onreadystatechange = function () {
  15. if (xhr.readyState == 4) {//表示服务端已经将数据完整返回,并且浏览器全部接受完毕。
  16. if (xhr.status == 200) {//判断响应状态码是否为200.
  17.  
  18. alert(xhr.responseText);
  19.  
  20. }
  21. }
  22. }
  23. });
  24. });
  25. </script>
  1. <script src="../Js/jquery-1.7.1.js"></script>
  2. <script type="text/javascript">
  3. $(function () {
  4. $("#btnPost").click(function () {
  5. var xhr;
  6. if (XMLHttpRequest) {
  7. xhr = new XMLHttpRequest();
  8. } else {
  9. xhr = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhr.open("post", "GetDate.ashx", true);
  12. xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  13. xhr.send("name=zhangsan&pwd=123");
  14. xhr.onreadystatechange = function () {
  15. if (xhr.readyState == 4) {
  16. if (xhr.status == 200) {
  17. alert(xhr.responseText);
  18. }
  19. }
  20. }
  21. });
  22. });
  23. </script>

26、统一布局

webform:ifram 母版页 (或者用第三方框架如fineUI) VTemplate模板  MVC:razor视图

27、缓存cache

和session的区别

每个用户都有自己单独的session

但是cache的数据是大家共享的

相同:都放在服务器内存中

  1. using CZBK.ItcastProject.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Caching;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9.  
  10. namespace CZBK.ItcastProject.WebApp._2015_6_6
  11. {
  12. public partial class CacheDemo : System.Web.UI.Page
  13. {
  14. protected void Page_Load(object sender, EventArgs e)
  15. {
  16. //判断缓存中是否有数据.
  17. if (Cache["userInfoList"] == null)
  18. {
  19. BLL.UserInfoService UserInfoService = new BLL.UserInfoService();
  20. List<UserInfo> list = UserInfoService.GetList();
  21. //将数据放到缓存中。
  22. // Cache["userInfoList"] = list;
  23. //第二种赋值方式
  24. Cache.Insert("userInfoList", list);
  25. //赋值的重载方法 可以指定缓存时间
  26. //不推荐用这么多参数的重载,这里只是介绍一下,缓存依赖性什么的完全没必要,在数据库插入的时候做一下操作就可以了
  27. Cache.Insert("userInfoList", list, null, DateTime.Now.AddSeconds(), TimeSpan.Zero, System.Web.Caching.CacheItemPriority.Normal, RemoveCache);
  28. Response.Write("数据来自数据库");
  29. //Cache.Remove("userInfoList");//移除缓存
  30. }
  31. else
  32. {
  33. List<UserInfo> list = (List<UserInfo>)Cache["userInfoList"];
  34. Response.Write("数据来自缓存");
  35. }
  36. }
  37. protected void RemoveCache(string key, object value, CacheItemRemovedReason reason)
  38. {
  39. if (reason == CacheItemRemovedReason.Expired)
  40. {
  41. //缓存移除的原因写到日志中。
  42. }
  43. }
  44. }
  45. }

文件缓存依赖项

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Caching;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9.  
  10. namespace CZBK.ItcastProject.WebApp._2015_6_6
  11. {
  12. public partial class FileCacheDep : System.Web.UI.Page
  13. {
  14. protected void Page_Load(object sender, EventArgs e)
  15. {
  16. string filePath = Request.MapPath("File.txt");
  17. if (Cache["fileContent"] == null)
  18. {
  19. //文件缓存依赖.
  20. CacheDependency cDep = new CacheDependency(filePath);
  21. string fileContent = File.ReadAllText(filePath);
  22. Cache.Insert("fileContent", fileContent, cDep);
  23. Response.Write("数据来自文件");
  24. }
  25. else
  26. {
  27. Response.Write("数据来自缓存:"+Cache["fileContent"].ToString());
  28. }
  29. }
  30. }
  31. }

http://www.cnblogs.com/xiaoshi657/p/5570705.html

28、页面缓存

webform

在页面加<%@ OutputCache Duration="5" VaryByParam="*"%> 就可以了,如果有参数VaryByParam="id" 两个参数VaryByParam="id;type"  所有参数VaryByParam="*"

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShOWDetail.aspx.cs" Inherits="CZBK.ItcastProject.WebApp._2015_6_6.ShOWDetail" %>
  2. <%@ OutputCache Duration="5" VaryByParam="*"%>
  3. <!DOCTYPE html>
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head runat="server">
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  7. <title></title>
  8. </head>
  9. <body>
  10. <form id="form1" runat="server">
  11. <div>
  12. <asp:DetailsView ID="DetailsView1" runat="server" Height="50px" Width="125px"></asp:DetailsView>
  13. </div>
  14. </form>
  15. </body>
  16. </html>

MVC

在MVC中要如果要启用页面缓存,在页面对应的Action前面加上一个OutputCache属性即可。

  1. [HandleError]
  2. public class HomeController : Controller
  3. {
  4. [OutputCache(Duration = , VaryByParam = "none")]
  5. public ActionResult Index()
  6. {
  7. return View();
  8. }
  9. }

http://www.cnblogs.com/iamlilinfeng/p/4419362.html#t5

29、session分布式存储方案

其他机器:session状态服务器,单独一台机器,专门记录所有机器的session状态

数据库

上面两个性能太低,微软给的解决方案,不推荐用。建议用memcache,redis

30、错误页面配置

mode 值

On 指定启用自定义错误。如果没有指定 defaultRedirect,用户将看到一般性错误。
Off 指定禁用自定义错误。这允许显示详细的错误。
 RemoteOnly 指定仅向远程客户端端显示自定义错误,并向本地主机显示 ASP.NET 错误。这是默认值。

  1. <configuration>
  2. <system.web>
  3. <customErrors mode="On" defaultRedirect="MyErrorPage.html"><!--默认错误页面-->
  4. <error statusCode="403" redirect="NoAccess.htm" /><!--个别错误指定错误页面-->
  5. <error statusCode="404" redirect="FileNotFound.html" />
  6. </customErrors>
  7. </system.web>
  8. </configuration>

ps:iis中有一错误页面 选项 也需要配置一下

31、队列写在内存中

new线程  比去线程池中取线程效率低很多

线程池的线程是自动创建的,我们控制不了,如果想控制线程就要自己new了

全部代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11.  
  12. namespace WindowsFormsApplication1
  13. {
  14. public partial class Form1 : Form
  15. {
  16. private static readonly object obj = new object();
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. TextBox.CheckForIllegalCrossThreadCalls = false;
  21. }
  22. /// <summary>
  23. /// 单线程:当程序执行时,有一个线程负责执行该代码,没有办法与用户进行其它的交互,所以窗体界面卡死了。(与窗体界面交互的线程叫UI线程。)
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. private void button1_Click(object sender, EventArgs e)
  28. {
  29. int a = ;
  30. for (int i = ; i < ; i++)
  31. {
  32. a = i;
  33. }
  34. MessageBox.Show(a.ToString());
  35. }
  36. /// <summary>
  37. /// 将计算的任务交给另外一个线程来执行,UI线程还是负责与用户进行打交道。默认情况线程所执行的任务完成了,该线程也就终止了。
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. //bool isStop = true;//推荐使用这种方式结束线程,不是thread.Abort()
  42. private void button2_Click(object sender, EventArgs e)
  43. {
  44. ThreadStart threadStart=new ThreadStart(StartCacul);
  45. Thread thread = new Thread(threadStart);
  46. // thread.Priority = ThreadPriority.Normal;//建议.
  47. // thread.Name = "shit";
  48. //thread.Abort();//强制终止线程。尽量不要该方法
  49. // thread.Join(1000);//主线程会阻塞(睡眠、等待1000毫秒)等待
  50. thread.Start();//将该线程标记可运行状态。
  51.  
  52. }
  53.  
  54. private void StartCacul()
  55. {
  56. // while (isStop)//推荐使用这种方式结束线程,不是thread.Abort()
  57. //{
  58. int a = ;
  59. for (int i = ; i < ; i++)
  60. {
  61. a = i;
  62. }
  63. // MessageBox.Show(a.ToString());
  64. this.txtNum.Text = a.ToString();
  65. //}
  66.  
  67. }
  68. /// <summary>
  69. /// 后台线程:当窗体关闭该线程也就结束了。
  70. /// </summary>
  71. /// <param name="sender"></param>
  72. /// <param name="e"></param>
  73. private void button3_Click(object sender, EventArgs e)
  74. {
  75. Thread thread1 = new Thread(StartCacul);
  76. thread1.IsBackground = true;
  77. thread1.Start();
  78. }
  79. /// <summary>
  80. /// 委托调用带参数的方法
  81. /// </summary>
  82. /// <param name="sender"></param>
  83. /// <param name="e"></param>
  84. private void button4_Click(object sender, EventArgs e)
  85. {
  86. List<int> list = new List<int>() {,,,, };
  87. ParameterizedThreadStart paramThread = new
  88. ParameterizedThreadStart(ShowList);
  89. Thread thread2 = new Thread(paramThread);
  90. thread2.IsBackground = true;
  91. thread2.Start(list);//传递参数
  92.  
  93. }
  94. private void ShowList(object obj)
  95. {
  96. List<int> list = (List<int>)obj;
  97. foreach (int i in list)
  98. {
  99. MessageBox.Show(i.ToString());
  100. }
  101.  
  102. }
  103. /// <summary>
  104. /// 解决跨线程访问。
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. private void button5_Click(object sender, EventArgs e)
  109. {
  110. Thread thread3 = new Thread(ShowStartCacul);
  111. thread3.IsBackground = true;
  112. thread3.Start();
  113. }
  114. private void ShowStartCacul()
  115. {
  116. int a = ;
  117. for (int i = ; i < ; i++)
  118. {
  119. a = i;
  120. }
  121. if (this.txtNum.InvokeRequired)//解决跨线程访问。如果该条件成立表示跨线程访问.
  122. {
  123. //Invoke:找到最终创建文本框的线程,然后有该线程为文本框赋值。
  124. this.txtNum.Invoke(new Action<TextBox, string>(SetValue), this.txtNum, a.ToString());
  125. }
  126. }
  127. private void SetValue(TextBox txt,string value)
  128. {
  129. txt.Text = value;
  130. }
  131. /// <summary>
  132. /// 线程同步:当多个线程同时在操作同一个资源时,会出现并发问题(例如操作文件)。这是可以加锁。
  133. /// </summary>
  134. /// <param name="sender"></param>
  135. /// <param name="e"></param>
  136. private void button6_Click(object sender, EventArgs e)
  137. {
  138. Thread t1 = new Thread(SetTextValue);
  139. t1.IsBackground = true;
  140. t1.Start();
  141.  
  142. Thread t2 = new Thread(SetTextValue);
  143. t2.IsBackground = true;
  144. t2.Start();
  145.  
  146. }
  147.  
  148. private void SetTextValue()
  149. {
  150.  
  151. lock (obj)
  152. {
  153. //执行操作。写文件。
  154. for (int i = ; i <=; i++)
  155. {
  156. int a = Convert.ToInt32(this.txtNum.Text);
  157. a++;
  158. this.txtNum.Text = a.ToString();
  159. }
  160.  
  161. }
  162.  
  163. }
  164.  
  165. }
  166. }

32、HttpModule

创建httpapplacation之后 会遍历所有的httpmodule  包括web.config中配置的

https://www.cnblogs.com/xiaoshi657/p/6529777.html

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Web;
  7.  
  8. namespace CZBK.ItcastProject.Common
  9. {
  10. //过滤器。
  11. public class CheckSessionModule:IHttpModule
  12. {
  13. public void Dispose()
  14. {
  15. throw new NotImplementedException();
  16. }
  17.  
  18. public void Init(HttpApplication context)
  19. {
  20. //URL重写。
  21. // context.AcquireRequestState+=context_AcquireRequestState;
  22. }
  23. public void context_AcquireRequestState(object sender, EventArgs e)
  24. {
  25. //判断Session是否有值.
  26. HttpApplication application = (HttpApplication)sender;
  27. HttpContext context = application.Context;
  28. string url = context.Request.Url.ToString();//获取用户请求的URL地址.
  29. if (url.Contains("AdminManger"))//网站程序所有的后台页面都放在该文件夹中。
  30. {
  31. if (context.Session["userInfo"] == null)
  32. {
  33. context.Response.Redirect("/2015-02-27/Login.aspx");
  34. }
  35. }
  36. }
  37. }
  38. }

33、Global

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Security;
  6. using System.Web.SessionState;
  7.  
  8. namespace CZBK.ItcastProject.WebApp
  9. {
  10. public class Global : System.Web.HttpApplication
  11. {
  12.  
  13. /// <summary>
  14. /// 整个WEB应用程序的入口。相当于Main函数.该方法只执行一次,当WEB应用程序第一次启动时,执行该方法,后续请求其它页面该方法不在执行。该方法中一般完成对整个网站的初始化。
  15. /// </summary>
  16. /// <param name="sender"></param>
  17. /// <param name="e"></param>
  18. protected void Application_Start(object sender, EventArgs e)
  19. {
  20. //这个只执行一次,其他的是用户请求一次执行一次,这个和用户请求无关,只有服务器上网站启动的时候,初始化启动
  21.  
  22. }
  23. /// <summary>
  24. /// 开启会话的时候执行该方法。
  25. /// </summary>
  26. /// <param name="sender"></param>
  27. /// <param name="e"></param>
  28. protected void Session_Start(object sender, EventArgs e)
  29. {
  30. //统计访问人数.
  31. //访问人数+1.
  32. //Application:服务端状态保持机制,并且放在该对象中的数据大家共享的。使用该对象时必须加锁。
  33.  
  34. Application.Lock();
  35. if (Application["count"] != null)
  36. {
  37. int count = Convert.ToInt32(Application["count"]);
  38. count++;
  39. Application["count"] = count;
  40. //向永久保存访客人数必须将该数据存储到文件或数据库中。
  41.  
  42. }
  43. else
  44. {
  45. Application["count"] = ;
  46. }
  47. Application.UnLock();
  48.  
  49. }
  50.  
  51. protected void Application_BeginRequest(object sender, EventArgs e)
  52. {
  53.  
  54. }
  55.  
  56. protected void Application_AuthenticateRequest(object sender, EventArgs e)
  57. {
  58.  
  59. }
  60.  
  61. /// <summary>
  62. /// 注意的方法。该方法会捕获程序中(所有)没有处理的异常。并且将捕获的异常信息写到日志中。
  63. /// </summary>
  64. /// <param name="sender"></param>
  65. /// <param name="e"></param>
  66. protected void Application_Error(object sender, EventArgs e)
  67. {
  68. HttpContext.Current.Server.GetLastError();//捕获异常信息.
  69. //将捕获的异常信息写到日志中。
  70.  
  71. }
  72.  
  73. /// <summary>
  74. /// 会话结束的时候执行该方法。
  75. /// </summary>
  76. /// <param name="sender"></param>
  77. /// <param name="e"></param>
  78. protected void Session_End(object sender, EventArgs e)
  79. {
  80. //不是实时的,和session的默认有效期是20分钟有关
  81.  
  82. }
  83. /// <summary>
  84. /// 整个应用程序结束的时候执行。
  85. /// </summary>
  86. /// <param name="sender"></param>
  87. /// <param name="e"></param>
  88. protected void Application_End(object sender, EventArgs e)
  89. {
  90.  
  91. }
  92. }
  93. }

34、进程

  1. //获取所有的进程的信息
  2. //Process[] ps=Process.GetProcesses();
  3. //foreach (Process p in ps)
  4. //{
  5. // //p.Kill();
  6. // Console.WriteLine(p.ProcessName);
  7. //}
  8. //获取当前进程
  9. //Process p= Process.GetCurrentProcess();//获取当前的进程
  10. //Console.WriteLine(p.ProcessName);
  11.  
  12. //启动别的进程
  13. //Process.Start("notepad.exe");
  14. //flv. ffmpeg.exe//很好的视频转换工具
  15. //视频转码解决方案,用户传到服务器,通过进行启动第三方软件(如:ffmpeg.exe)进行转换

35、线程

  1. /// <summary>
  2. /// 将计算的任务交给另外一个线程来执行,UI线程还是负责与用户进行打交道。默认情况线程所执行的任务完成了,该线程也就终止了。
  3. /// </summary>
  4. /// <param name="sender"></param>
  5. /// <param name="e"></param>
  6. //bool isStop = true;//推荐使用这种方式结束线程,不是thread.Abort()
  7. private void button2_Click(object sender, EventArgs e)
  8. {
  9. ThreadStart threadStart=new ThreadStart(StartCacul);
  10. Thread thread = new Thread(threadStart);
  11. // thread.Priority = ThreadPriority.Normal;//建议.
  12. // thread.Name = "shit";
  13. //thread.Abort();//强制终止线程。尽量不要该方法
  14. // thread.Join(1000);//主线程会阻塞(睡眠、等待1000毫秒)等待
  15. thread.Start();//将该线程标记可运行状态。
  16.  
  17. }
  18.  
  19. private void StartCacul()
  20. {
  21. // while (isStop)//推荐使用这种方式结束线程,不是thread.Abort()
  22. //{
  23. int a = ;
  24. for (int i = ; i < ; i++)
  25. {
  26. a = i;
  27. }
  28. // MessageBox.Show(a.ToString());
  29. this.txtNum.Text = a.ToString();
  30. //}
  31.  
  32. }
  1. /// <summary>
  2. /// 后台线程:当窗体关闭该线程也就结束了。
  3. /// </summary>
  4. /// <param name="sender"></param>
  5. /// <param name="e"></param>
  6. private void button3_Click(object sender, EventArgs e)
  7. {
  8. Thread thread1 = new Thread(StartCacul);
  9. thread1.IsBackground = true;//这个值表示窗体关闭,线程就关闭
  10. thread1.Start();
  11. }

线程池:

  1. using System;
  2. using System.Threading;
  3.  
  4. namespace ThreadDemo
  5. {
  6. class program
  7. {
  8. static void Main()
  9. {
  10. int nWorkThreads;
  11. int nCompletionPortThreads;
  12. ThreadPool.GetMaxThreads(out nWorkThreads, out nCompletionPortThreads);
  13. Console.WriteLine("Max worker threads: {0}, I/O completion threads: {1}",nWorkThreads, nCompletionProtThreads);
  14. for(int i = ; i < ; i++)
  15. {
  16. ThreadPool.QueueUserWorkItem(JobForAThread);
  17. }
  18. Thread.Sleep();
  19. }
  20.  
  21. static void JobForAThread(object state)
  22. {
  23. for(int i = ; i < ; i++)
  24. {
  25. Console.WriteLine("loop {0}, running inside pooled thread {1}", i, Thread.CurrentThread.ManagedThreadId);
  26. Thread.Sleep();
  27. }
  28. }
  29. }
  30. }

36、redis队列

刚刚百度了一下redis的队列,大致应该是两个redis的方法

EnqueueItemOnList 将一个元素存入指定ListId的List<T>的头部
DequeueItemFromList 将指定ListId的List<T>末尾的那个元素出列,返回出列元素

应用:

  1. public class MyExceptionFilterAttribute : HandleErrorAttribute
  2. {
  3. //版本2:使用Redis的客户端管理器(对象池)
  4. public static IRedisClientsManager redisClientManager = new PooledRedisClientManager(new string[]
  5. {
  6. //如果是Redis集群则配置多个{IP地址:端口号}即可
  7. //例如: "10.0.0.1:6379","10.0.0.2:6379","10.0.0.3:6379"
  8. "127.0.0.1:6379"
  9. });
  10. //从池中获取Redis客户端实例
  11. public static IRedisClient redisClient = redisClientManager.GetClient();
  12.  
  13. public override void OnException(ExceptionContext filterContext)
  14. {
  15. //将异常信息入队
  16. redisClient.EnqueueItemOnList("ExceptionLog", filterContext.Exception.ToString());
  17. //跳转到自定义错误页
  18. filterContext.HttpContext.Response.Redirect("~/Common/CommonError.html");
  19.  
  20. base.OnException(filterContext);
  21. }
  22. }

http://www.cnblogs.com/edisonchou/p/3825682.html

ps:log4net 早期版本不支持多线程 log4net 1.2.11版本以上支持

37、application19事件

38、lenght

循环的时候 尽量放在外面  否者每次循环都计算一次  不能for(int i=0,i<a.lenght,i++){}

39、反编译软件 reflector  IL Spy

40、判断字符串中是否存在某段字符

indexOf Contains

41、去掉最后一个逗号

  1. RegionsStr = RegionsStr.Remove(RegionsStr.LastIndexOf(","), ); //去掉最后一个逗号

42、读取xml

  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Configuration;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Xml;
  8. using WebCenter.Model;
  9.  
  10. namespace WebCenter.Service
  11. {
  12. /// <summary>
  13. /// Index 的摘要说明
  14. /// </summary>
  15. public class Index : IHttpHandler
  16. {
  17. protected readonly string CityIpConfigXMLPath = System.Web.HttpContext.Current.Server.MapPath("/config/CityIpConfigXML.xml");
  18. public void ProcessRequest(HttpContext context)
  19. {
  20. string _province = context.Request.QueryString["_province"];
  21. string _city = context.Request.QueryString["_city"];
  22. City city = GetSkipCity(_province, _city);
  23. context.Response.ContentType = "text/plain";
  24. context.Response.Write("{status:'200',data:" + JsonConvert.SerializeObject(city) + "}");
  25. }
  26. /// <summary>
  27. /// 根据当前登录的IP的省份和城市,返回要跳转的城市
  28. /// </summary>
  29. /// <param name="ProvinceName">省份</param>
  30. /// <param name="CityName">城市</param>
  31. /// <returns></returns>
  32. public City GetSkipCity(string ProvinceName, string CityName)
  33. {
  34. City citymodel=null;
  35. string SkipCityName = string.Empty;
  36. XmlDocument xd = new XmlDocument();
  37. xd.Load(CityIpConfigXMLPath);
  38. //获取根节点
  39. XmlNode root = xd.DocumentElement;
  40. //获取节点列表
  41. XmlNodeList ProvinceList = root.ChildNodes;
  42. foreach (XmlNode Province in ProvinceList)
  43. {
  44. if (ProvinceName == Province.Attributes["ProvinceName"].Value.ToString())
  45. {
  46. foreach (XmlNode city in Province)
  47. {
  48. if (CityName == city.Attributes["CityName"].Value.ToString())
  49. {
  50. citymodel = new City();
  51. citymodel.CityCode = city.Attributes["CityCode"].Value.ToString();
  52. citymodel.CityName = city.Attributes["SkipCity"].Value.ToString();
  53. citymodel.CityID = city.Attributes["CityValue"].Value.ToString();
  54. citymodel.CitySkipUrl = city.Attributes["CitySkipUrl"].Value.ToString();
  55.  
  56. return citymodel;
  57. }
  58. }
  59. if (citymodel==null)
  60. {
  61. foreach (XmlNode province in Province)
  62. {
  63. if (province.Attributes["CityName"].Value.ToString() == "其他")
  64. {
  65. citymodel = new City();
  66. citymodel.CityCode = province.Attributes["CityCode"].Value.ToString();
  67. citymodel.CityName = province.Attributes["SkipCity"].Value.ToString();
  68. citymodel.CityID = province.Attributes["CityValue"].Value.ToString();
  69. citymodel.CitySkipUrl = province.Attributes["CitySkipUrl"].Value.ToString();
  70. return citymodel;
  71.  
  72. }
  73. }
  74. }
  75. }
  76. }
  77. if (citymodel==null)
  78. {
  79. foreach (XmlNode province in ProvinceList)
  80. {
  81. if (province.Attributes["ProvinceName"].Value.ToString() == "其他")
  82. {
  83. citymodel = new City();
  84. citymodel.CityName = province.Attributes["SkipDafualt"].Value.ToString();
  85. citymodel.CitySkipUrl = province.Attributes["CitySkipUrl"].Value.ToString();
  86. return citymodel;
  87. }
  88. }
  89. }
  90. return citymodel;
  91. }
  92. public bool IsReusable
  93. {
  94. get
  95. {
  96. return false;
  97. }
  98. }
  99. }
  100. }
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <CityIpConfig>
  3.  
  4. <ProvinceIp ProvinceName="北京">
  5. <CityIp CityName="北京" SkipCity="北京" CityCode="" CityValue="" CitySkipUrl="http://webbj.imtfc.com/Index.html" ></CityIp>
  6. </ProvinceIp>
  7.  
  8. <ProvinceIp ProvinceName="福建">
  9.  
  10. <CityIp CityName="厦门" SkipCity="厦门" CityCode="XM" CityValue="4" CitySkipUrl="http://webcenter.imtfc.com/WebConstruction.html" >"</CityIp>
  11. <CityIp CityName="福州" SkipCity="福州" CityCode="FZ" CityValue="3" CitySkipUrl="http://webcenter.imtfc.com/WebConstruction.html" ></CityIp>
  12. <CityIp CityName="龙岩" SkipCity="厦门" CityCode="XM" CityValue="4" CitySkipUrl="http://webcenter.imtfc.com/WebConstruction.html" ></CityIp>
  13. <CityIp CityName="泉州" SkipCity="厦门" CityCode="XM" CityValue="4" CitySkipUrl="http://webcenter.imtfc.com/WebConstruction.html" ></CityIp>
  14. <CityIp CityName="其他" SkipCity="福州" CityCode="FZ" CityValue="3" CitySkipUrl="http://webcenter.imtfc.com/WebConstruction.html" ></CityIp>
  15. </ProvinceIp>
  16.  
  17. <ProvinceIp ProvinceName="其他" SkipDafualt="北京" CitySkipUrl="http://webbj.imtfc.com/Index.html">
  18. </ProvinceIp>
  19. </CityIpConfig>

43、list取随机

  1. Random rd = new Random();
  2.  
  3. List<string> liststr = new List<string>();
  4. liststr.Add("aaa");
  5. liststr.Add("bbb");
  6. liststr.Add("ccc");
  7. liststr.Add("");
  8. liststr.Add("");
  9. liststr.Add("");
  10. //随机一个
  11. var s = liststr.OrderBy(_ => Guid.NewGuid()).First();
  12. //随机两个
  13. var ss = liststr.OrderBy(_ => Guid.NewGuid()).Take();
  14. //乱序
  15. var sss = liststr.OrderBy(o => rd.Next(, liststr.Count())).ToList();

2、C#读取web.config文件信息

web.config

  1. <?xml version="1.0"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <appSettings>
  8. <add key="name" value="name1"/>
  9. </appSettings>
  10. </configuration>

C#读取

  1. string name = System.Web.Configuration.WebConfigurationManager.AppSettings["name"];
    System.Configuration.ConfigurationManager.AppSettings["SqlConnectionStr"]; 

C#设置

  1. System.Web.Configuration.WebConfigurationManager.AppSettings.Set("name", "name2");

1、常用技术、框架

首先C#基础应该熟悉,不要把暂时用不到而却常用的东西忘掉。

数据库

应该掌握oracle,毕竟工作这么多年一直用的oracle

MSSQL、SQLServer了解即可,毕竟SQL相似度很高。

C#开发框架:

MVC  EF  三层

第三方组件

Log4net  日志

json.net  json转换

Npoi     office处理

前台web框架

easyUI   js前端框架

bootstrap  很好的

LigerUI

extjs

控件、技术

ECharts 图标 大文件上传

有时间可以了解一下安卓开发,U3D开发。

先整理这些,以后想起来什么再写

Lucene.Net+盘古分词

高清楚 WEBAPI

T4  代码生成器     powerde..  Npoi   Log4

【知识碎片】Asp.Net 篇的更多相关文章

  1. 【知识碎片】CSS 篇

    1.CSS达到截取效果 地方卡机了会计师的立法及  =>  地方卡机了... max-width: 400px; overflow: hidden; white-space: nowrap; t ...

  2. 【知识碎片】python 篇

    领域:运维 网站 游戏 搜索 嵌入式 C/S软件 Openstack二次开发 绿色版:Portable Python 面向对象.解释型动态语言 env python 切换版也好使,自己寻找系统中pyt ...

  3. 【知识碎片】 Linuxb 篇

    3.登录mysql 开启MySQL服务后,使用MySQL命令可以登录.一般使用mysql -uroot -p即可.如果数据库不是本机,则需要加参数,常用参数如下:1,-h,指定ip地址,默认为loca ...

  4. 【知识碎片】JavaScript篇

     40.选择器组合 逗号是多选择器空格 是子子孙孙尖括号 只找儿子 39.失去焦点事件blur $("input").blur(function(){ $("input& ...

  5. 【知识碎片】SQL篇

    43.group by多个字段 查询每个班级男女生各多少人 Select count(id),xingbie,banji from tablename group by xingbie,banji 4 ...

  6. IOS开发基础知识碎片-导航

    1:IOS开发基础知识--碎片1 a:NSString与NSInteger的互换 b:Objective-c中集合里面不能存放基础类型,比如int string float等,只能把它们转化成对象才可 ...

  7. C#常用函数→ASP.NET篇

    C#常用函数→ASP.NET篇 转载地址→http://www.cnblogs.com/superfang/archive/2008/07/02/1233706.html 以前我都是"原文地 ...

  8. 微软实战训练营(X)重点班第(1)课:SOA必备知识之ASP.NET Web Service开发实战

    微软实战训练营 上海交大(A)实验班.(X)重点班 内部课程资料 链接:http://pan.baidu.com/s/1jGsTjq2 password:0wmf <微软实战训练营(X)重点班第 ...

  9. Jmeter 接口测试知识梳理——应用基础篇

    Jmeter 使用也有很长时间了,但是一直没有做一下知识梳理,近期会对公司同事做一下这方面的培训,借此机会,把使用过程中应用到的知识,或是遇到的问题,整理出来,方便大家学习! Jmeter 接口测试知 ...

  10. Jmeter 接口测试知识梳理——持续集成篇

    Jmeter 使用也有很长时间了,但是一直没有做一下知识梳理,近期会对公司同事做一下这方面的培训,借此机会,把使用过程中应用到的知识,或是遇到的问题,整理出来,方便大家学习! Jmeter + Ant ...

随机推荐

  1. gulp-rev 添加版本号

    打开node_modules\gulp-rev\index.js 第144行 manifest[originalFile] = revisionedFile; 更新为: manifest[origin ...

  2. Struts09---验证框架

    01.创建登录界面 <%@ page language="java" import="java.util.*" pageEncoding="UT ...

  3. UI- UINavigationController UITabBarController 使用总结

    #pragma mark - UINavigationController UITabBarController  ====================================== 控制器 ...

  4. for-in和for 循环 的区别

    以前早就知道,for...in 语句用于对数组或者对象的属性进行循环操作,而for循环是对数组的元素进行循环,而不能引用于非数组对象, 但咱在js项目里,遇到循环,不管是数组还是对象,经常使用for- ...

  5. C++之内存管理

    内存管理是C++最令人切齿痛恨的问题,也是C++最有争议的问题,C++高手从中获得了更好的性能,更大的自由,C++菜鸟的收获则是一遍一遍的检查代码和对C++的痛恨,但内存管理在C++中无处不在,内存泄 ...

  6. SpringMVC使用session实现简单登录

    1.首先为了能直观地在jsp页面体现session的内容,我使用了jstl表达式,首先在pom.xml中引入jstl的依赖 <!-- jstl所需要的依赖 --> <dependen ...

  7. AngularJS方法 —— angular.bootstrap

    描述: 此方法用于手动加载angularjs模板 (官方翻译:注意基于端到端的测试不能使用此功能来引导手动加载,他们必须使用ngapp. angularjs会检测这个模板是否被浏览器加载或者加载多次并 ...

  8. 【操作系统】总结五(I/O管理)

    输入输出管理本章主要内容: I/O管理概述(I/O控制方式.I/O软件层次结构)和I/O核心子系统(I/O调度概念.局速缓存与缓冲区.设备分配与回收.假脱机技术(SPOOLing)). 5.1 I/O ...

  9. centos6.5 安装nginx

    安装之前先安装VMware tools(方便于从windows上拷贝文件到linux) 1. nginx安装环境 nginx是C语言开发,建议在linux上运行,本次使用Centos6.5作为安装环境 ...

  10. 如何在本地浏览器访问nginx

    1.打开vmware"编辑虚拟机"设置,点击“网络适配器”选择“桥联模式”: 2.开启该虚拟机,输入用户名root及密码登陆服务器: 3.以管理员身份打开cmd,在命令窗口输入ip ...