/Visual Studio 2008/CSASPNETCustomHttpHandlerandModule/CSASPNETCustomHttpHandlerandModule/TestModule.aspx.cs

# · C# · 17 lines · 16 code · 1 blank · 0 comment · 0 complexity · bad1184b0c65d74b2d5d972a23b76704 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. namespace CSASPNETCustomHttpHandlerandModule
  8. {
  9. public partial class TestModule : System.Web.UI.Page
  10. {
  11. protected void Page_Load(object sender, EventArgs e)
  12. {
  13. Response.Write("<h1><font color=green>This is wrote in .aspx page's PageLoad event. </font></h1>");
  14. }
  15. }
  16. }