频道直达 - 专题 - 新闻 - 技巧 - 组网 - 开发 - 安全 - web编程 - 图像 - 操作系统 - 数据库 - 教育 - 旅游 - 健康 - 时尚 - 驱动 - 软件 - 游戏 - 多媒体 - ERP - 讨论组

网络编程ASP.NET的几个技巧

来源:chinaaspx.com 作者: 出处:巧巧读书 2007-12-13 进入讨论组

    1.显示通过代码生成的图片

  把生成图片的代码放在一个aspx页面中,在PageLoad事件中把图片写入输出流:
private void Page_Load(object sender, System.EventArgs e) {
    string code = Request.Params["code"];
    Bitmap image = DrawImage(code);
    Response.ContentType = "image/gif";
    image.Save(Response.OutputStream,System.Drawing.Imaging.ImageFormat.Gif);
    Response.End();
}

  在需要引用图片的地方,设定图片URL为生成图片的aspx页面:
ImageCode.ImageUrl = "CodeImage.aspx?code="+code;

    2.使用System.Web.HttpContext.Current来实现一些页面中常用的方法,比如:
public class WebApp{
public static void ShowMessage(string message){
    HttpContext.Current.Response.Write ("<script language=javascript>alert('"+message+"')</script>");
}
public static string CurrentUser{
    get{
        return HttpContext.Current.Session["UserID"]+"";
    }
}
}

    3.在自定义的Web控件中,把Javascript脚本文件编译为内嵌的资源,然后从资源中读取脚本并注册。

public class Res {
    public static StreamReader GetStream(Type type,string name){
        //Assembly assembly = Assembly.GetAssembly(type);
        Assembly assembly = type.Assembly;
        Stream stream = assembly.GetManifestResourceStream(type,name);
        return new StreamReader(stream);
    }
}

public class ScriptControl : Control {

    /// <summary>
    /// Register Client Script Block
    /// </summary>
    /// <param name="control">custom web control</param>
    /// <param name="scriptfile">resource script file name</param>
    public void RegisterScript(string scriptfile){
        if (!this.Page.IsClientScriptBlockRegistered(scriptfile)) {
            StreamReader reader = Res.GetStream(this.GetType(),scriptfile);
            using(reader){
                string script
                    = "<script language=\"javascript\" type=\"text/javascript\">\r\n<!--\r\n"
                    + reader.ReadToEnd()
                    + "\r\n//-->\r\n</script>";
                this.Page.RegisterClientScriptBlock(scriptfile, script);
            }
        }
    }
}

[DefaultProperty("Text"),
ToolboxData("<{0}:ShowDialogListBox runat=server></{0}:ShowDialogListBox>")]
public class ShowDialogListBox : ScriptControl {
    ......
    protected override void OnInit(EventArgs e) {
        this.RegisterScript("EnDeListBox.js");
    }
    ......
}


    4.在web.config文件中定义默认的页面继承类型。

<pages pageBaseType="Msdn.Page" />

来自:http://www.qqread.com/aspdotnet/x306255.html 更多文章 更多内容请看Office技巧专区网络管理实用手册网络故障手册专题,或进入讨论组讨论。
收藏此文】【 】【打印】【关闭
相关图文阅读
频道图文推荐
健 康 咨 询
时 尚 咨 询
巧巧读书宗旨
相关专题
讨论组问题推荐
站内各频道最新更新文档
站内最新制作专题
热门关键字导读
Photoshop教 程照片处理 照片制作 PS快捷键 抠图
计 算 机 故 障XP系统修复
艺 术 与 设 计设计 流媒体 设计欣赏 边框
计 算 机 安 全ARP
站内频道文章精选
巧巧电脑频道编辑信箱  告诉我们您想看的专题或文章