1.3使用Cache 尽量使用缓存保存常用数据,例如数据库访问时使用保存数据代替频繁访问数据库可以带来性能的极大提升.
1.4尽量减少使用Server Control
尽量使用HTML控件,除非必须要编程控制控件.使用以下方法可以修改HTML控件的值,从而减少服务器控件的使用:
string strLink = "www.xiaoniu168.com";
void Page_Load(Object sender, EventArgs e)
{
//..retrieve data for strLink here
// Call the DataBind method for the page.
DataBind( );
}
<%--the server control is not necessary...--%>
The Name of the Link
<%-- use DataBinding to substitute literals instead...--%>
The Name of the Link
<%-- or a simple rendering expression...--%>
The Name of the Link
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗