摘要:
public string GetRootURI() { string UrlAuthority = Request.Url.GetLeftPart(UriPartial.Authority); if (Request.ApplicationPath == null || Request.ApplicationPath == "/") { //直接安装在Web站点 return UrlAuthor... 阅读全文
2009年10月16日 #
摘要:
<xxx:RDataGridTemplateColumn Header="Protect" RColumnKey="Protect" DefaultWidth="100"> <data:DataGridTemplateColumn.HeaderStyle> <Style TargetType="dataprimitives:DataGridColumnHeader"&... 阅读全文
摘要:
private void Download(string fileName, byte[] buffer) { Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开 Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtil... 阅读全文