1.字符串赋空初值的标准写法:
string var=string.Empty;
2. 写代码过程中,将部分代码段折叠一起,从而方便整体阅读:
#region the test Code
#endregion将代码包括其中
3. 将服务器端的容器控件中的所有子控件全部清空:
如:asp:Panel   -----    Panel1.Controls.Clear();