|]]>
/// |
/// ]]>
/// |
/// ]]>
///
/// |
///
/// ]]>
Thrown when... |.]]>
]]>
///
/// List Header
/// |.
///
/// -
/// Term 1
/// Item 1.
///
/// -
/// Term 2
/// Item 2.
///
/// ]]>
///
/// List Header
/// |.
///
/// -
/// Term 1
/// Item 1.
///
/// -
/// Term 2
/// Item 2.
///
/// ]]>
///
/// List Header
/// |.
///
/// -
/// Term 1
/// Item 1.
///
/// -
/// Term 2
/// Item 2.
///
/// ]]>
/// |
/// ]]>
/// |
/// ]]>
/// |
/// ]]>
/// List Header
/// |.
/// ]]>
/// List Header
/// |.
/// ]]>
/// |
/// ]]>
Description.]]>
]]>
|.]]>
/// |
/// ]]>
/// |
/// ]]>
]]>
]]>
/// |
/// ]]>
|.]]>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.LoadPage);
}
#endregion
private void LoadPage(object sender, EventArgs e)
{
|
}
}
}]]>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.LoadUserControl);
}
#endregion
private void LoadUserControl(object sender, EventArgs e)
{
|
}
}
}]]>
using System;
using System.IO;
using System.Web;
namespace MyNamespace
{
public class MyHandler: IHttpHandler
{
public bool IsReusable
{
get
{
return true;
}
}
public void ProcessRequest(HttpContext ctx)
{
ctx.Response.ContentType = "text/html";
ctx.Response.Write("|");
ctx.Response.End();
}
}
}]]>
]]>
]]>
]]>
]]>