ASP.NET is a crock of sh1t.
SKA uses JHH parser with custom light webserver.
SKA uses JHH parser with custom light webserver.
The forums out there are full of other people feeling the same rage.
The forums out there are full of other people feeling the same rage.
protected void some_event_handler (object sender, EventArgs e)
{
LinkButton lk_bookmark = new LinkButton();
lk_bookmark.Text = "bookmark";
lk_bookmark.Click += new EventHandler(bookmark_Click);
container.Controls.Add(lk_bookmark);
}
...
// Event Handler (code behind)
protected void bookmark_Click(object sender, EventArgs e)
{
// Do Stuff
}

Comment