3
votes
2answers
777 views
ASP.NET CheckBoxList DataBinding Question
Is it possible to DataBind an ASP.NET CheckBoxList such that a string value in the data becomes the label of the check box and a bool value checks/unchecks the box?
On my asp.net …
3
votes
6answers
721 views
Is it possible to add a web user control to a class library?
I'm looking at building some web user controls with an eye toward re-use, but I can't seem to add a Web User Control in my class library in VS2008. Is there a way to work around th …
3
votes
7answers
1k views
When creating a web control should you override OnLoad or implement Page_Load
When you create a new web user control in visual studio it by default adds the Page_Load event. What is the advantage to using this rather than overriding the base OnLoad event on …
2
votes
4answers
64 views
Is it bad to model a web user control as a state machine?
We're designing a web user control, which does some different things. It gets events from inside it or outside it, and the response to these events depend on the state of this cont …
2
votes
4answers
312 views
How can a custom ASP.NET control cache data without using the ViewState?
I'm not sure if this is possible in ASP.NET, but here is the problem I have: some of the data lists on my web application are displayed using a GridView; however, because some of t …
2
votes
2answers
348 views
When extending a asp.net web control, at which event should additional web controls be injected?
I'm trying to avoid a composite control or using and ASCX by extending an existing control. However, I'm having trouble with getting the controls added to the inherited control and …
1
vote
5answers
155 views
How do I create an ASP.NET control that simulates switch/case?
I've got a repeater looping through a list of objects that are of different types. I'd like to render the objects differently depending on their type. For this I need some kind of …
1
vote
1answer
70 views
Web control advice for my scenario
Here is my scenario and I would like to ask your opinion on which control is best to use. I am using C#, ASP.net 2.0.
I am required to create a structure that resembles a tree. Th …
1
vote
2answers
504 views
limit selections in a listbox in vb.net
Hi all,
I am creating a web control in vb.net that contains a list box. I know that I am able to choose a selection mode of Single or Multiple, but I am interested in limiting a M …
1
vote
3answers
254 views
Dyanamically added control not doing postback
I am overriding a Grid, adding some customer features. One of the features is a drop-down to adjust page size. I am extending the grid using a customer server control, which work …
1
vote
4answers
709 views
When’s the absolute latest you can call Page.ClientScript.RegisterClientScriptBlock?
I need to output some JavaScript in a WebControl based on some processing and some properties that the consumer can set, doing it on the load of the page will be to early.
When is …
0
votes
1answer
110 views
Dynamic change of an editor type for ASPxGridView
I have an ASPxGridView from DevExpress fed with data from ObjectDataSource. My data row objects expose properties such ParameterName, ParameterType and ParameterValue.
//Propertie …
0
votes
1answer
54 views
Are there any AJAX NON-MODEL message box in ASP.NET Web Control?
I am looking for some popup message / reminder like this and that, in a ready to use control in ASP.NET.
PS. For some reasons, I am forced NOT TO WRITE ANY JAVASCRIPT. I can use o …
0
votes
2answers
113 views
Validate - Web User Control
Hello,
I do not like to use the calendar from .NET, so I would like to have one Web User Control with 3 drop down boxes, day, month, year. [CODE DONE].
I want to be able to call …
0
votes
3answers
97 views
Is is possible to get ASP.NET input controls to act like a basic HTML Form?
ASP.NET has a number of nice features regarding making data input pages:
Adding input controls is easy (<asp:...).
The system automatically generates member variable for the c …
