Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
251 views

ASP.NET custom control control state

What is the advantage of using control state instead of view state when I create a custom control in ASP.NET? Why use control state? Does a good article about this exist?
1
vote
1answer
193 views

sharing web user control between various projects

Is there a way to share user controls between various projects ? I have created user controls like login control, menu control, header control, lost password control and etc and they are all ...
1
vote
2answers
550 views

Can ASP.NET web controls take in anything in the constructor?

I want to have a secure control but also want to extend the existing button or textbox the asp.net framework provides. So my class dec would look something like: public class MyTextBox : ...
0
votes
1answer
20 views

Apply Visualisation/style to a ASP.NET server control of ASP.NET that is created by injecting JAVASCRIPT and HTML

I have created four ASP.NET Server controls that will inject a lot of javascript and lot of html. One control shows a html table. One control is for showing a data entry form that have juery plugin ...
0
votes
3answers
538 views

How to register custom server control on ASP.NET page

I have a project and I am trying to register a custom server control (there is no .ascx file) on the page. I am currently using Class Declaration namespace MyApp.Controls{ public class ...
0
votes
2answers
581 views

getelementbyid in external js not working for a asp.net-customcontrol

have a custom control with a button. There is an external javascript file that tries to attach some events to my control. Like onclick event is added at runtime to the button. To do so I use var ...
0
votes
1answer
449 views

Possible to have a inner control on a custom server control?

I would like to be able to do something like: <ui:Tab Title="A nice title"> <TabTemplate> <asp:Literal runat="server" ID="SetMe">With Text or Something</asp:Literal> ...