摘要:
做过4年的WebForms开发,1年的MVC,唯独没有做过WebPages模块下的开发。一直对第三者环境有一种莫名的生疏感。 1. Web Page, 适合于初级学习者,在一些小型及大型项目中广泛应用,也适合熟悉网络编程爱好者。 2. Web Form,适合于初级学习者,适合于各种规模的项目。最适合 阅读全文
摘要:
According to the documentation, timestamp is a synonym for rowversion - it's automatically generated and guaranteed1 to be unique. datetime isn't - it 阅读全文
摘要:
using System; using System.Data; using System.Data.SqlClient; using System.Text; namespace ConsoleApplication1 { static class Test8 { static SqlConnection cn; static SqlTran... 阅读全文
摘要:
1. 增加 SET NOCOUNT ON 语句,较少不必要的还回数据件数: CREATE PROC dbo.ProcName AS SET NOCOUNT ON; --Procedure code here SELECT column1 FROM dbo.TblTable1 -- Reset SET 阅读全文
摘要:
各个模块将Session的存储和获取方法集中在下记得静态类中,结果导致发布后的个客户段数据混乱。 public class SessionManager { private static SearchSession _searchSession; private static User _userS 阅读全文