0
votes
Call ASP.NET Function From Javascript?
You might want to create a web service for your common methods.
Just add a WebMethodAttribute over the functions you want to call, and that's about it.
Having a web service with all you …
0
votes
RaisePostBackEvent not firing
Double check that it is indeed a derivation of the UserControl class, not the WebControl one.
This one has had me by surprise many times. If you need to use WebControl for the styling, you ne …
1
vote
Why is my asp.net application throwing ThreadAbortException?
What does the stacktrace show?
Is there a pattern to it, or does it show up randomly?
…
0
votes
Creating controls within a Loop
This should work fine?
for (int i = 0; i < 6; i++)
{
TableCell tCell = new TableCell();
TextBox txt = new TextBox();
tCell.Controls.Add(txt);
tRow.Cells.Add(tCell …
1
vote
How can I invoke (web) Button.Click in c#?
You will need an event to act as a proxy, but you are pretty much better off just refactoring your code.
private EventHandler ButtonClick;
protected override void CreateChi …
1
vote
What is a correct way to initiate user control from code behind
Should be something like this:
var comment = (IncidentHistoryGroupComment)Page.LoadControl("~/Controls/IncidentHistoryGroupComment.ascx");
Then you just insert in …
2
votes
ASP.NET Error when trying to access page…
As it says in the error message:
"This error can be caused by a virtual directory not being configured as an application in IIS."
Configure it as an application, and it will be fine. …
2
votes
