網路編程ASP.NET的幾個技巧

來源:互聯網
上載者:User
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" />

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.