获取当前的url : string url = this.Request.Url.ToString (); 获取上一个url: string rul=Request.UrlReferrer.ToString(); 获取上传文件的大小:this.FileUpload1.PostedFile.ContentLength;单位为字节 在web.config文件中设置:
在system.web节点下添加:
<httpRuntime maxRequestLength="4096" />
这样大小是4M,参数最大是2091151,2G左右大小启用页面调试:定在@page 中声明 trace=true;
绑定时格式化字符串:<td> [<%#Eval ("publishtime","{0:d}")%>] </td> 绑定数据拼凑字符串:Text ='<%#"评论("+Eval("criticismnum")+")" %>' C# String 转换成 Color[zz]string转换成color
string col = "#FF8400"; this.BackColor = System.Drawing.ColorTranslator.FromHtml(col);
color转换成string |