Tagged Questions
5
votes
2answers
181 views
Allowing any property/attribute on a server/usercontrol
I've noticed that on most, if not all, standard web controls in the System.Web.UI.WebControls namespace, you can add any properties you want to them without crashing the page.
Take the asp:Button ...
3
votes
1answer
1k views
How do I convert an ASP.NET page using Ajax webmethods to an Ajax-enabled servercontrol?
In this tutorial I am reading, Dave Ward creates a page that shows the server date in a label without using the update panel.
I am trying to learn how to create servercontrols that use ajax for ...
1
vote
5answers
53 views
ASP.NET: How do I create a widget/user control that can be used with other solutions?
I am looking to create a widget that can be used with other solutions. The widget is a competition widget that can be placed in different parts of the site.
What is the best way to do this? Should I ...
1
vote
2answers
66 views
Javascript won't work on Html server control?
I am writing a website with ASP.Net.
I will have lots of html generic controls like <div> <span> and so on..
I have some onclick javascript functions, onmouseover javascript functions..
...
1
vote
2answers
32 views
How do I make an attribute on a custom user/server control be mandatory?
If certain attributes on built-in ASP.NET controls aren't specified, then an exception will be thrown.
How do I do this on my custom user/server control?
1
vote
1answer
1k views
Add <Script … /> tag within <Head … /> tag in ServerControl (ASP.NET)?
I'm gonna use JQuery files in my custom ServerControl , thus I have to add below line within Head tag.
<script type="text/javascript" src="jquery-1.4.3.min.js"></script>
How can I do it ...
1
vote
1answer
462 views
ASP.NET server control: how to convert design-time string into object type (TypeConverter?)
So hopefully this is a silly question (that would make it easily answered).
I'm trying to make a composite server control that encapsulates a TextBox, some validators and other stuff, depending on ...
0
votes
1answer
37 views
user control inside server control
I working on an asp.net app. I'm have a user control inside a server control, say:
<sc:MyServerControl ID=...>
<uc:MyUserControl>
</uc:MyUserControl>
...
0
votes
1answer
38 views
How to allow HTML/Javascript intellisense in self-developed .Net Server Control inner text?
We've developed our custom .Net Server Control for our ASP.Net project use. It allows users to put HTML/Javascript code into its inner text node. The problem is, when the user is inputting the ...
0
votes
1answer
70 views
How to Serialize httpcontext Object and passing through webservice from an asp.net server control?
I want to pass httpcontext object through webservice by serializing it from an asp.net server control . but it is not working with server control. It is working with webapplication. Please help me in ...
0
votes
0answers
37 views
change web.config at design time when using Custom Server Control?
I am trying to create a Custom Server Control in C# using VS2008. I am using this custom control that actually requires me to modify the web.config file in order to add an HttpModule action element in ...
0
votes
1answer
165 views
Server Control Create Children Elements
I want to know how do you create child elements for a server control and is there any documentation or tutorials on this e.g
<myMenu:Menu id="Menu1" runat="server">
<myMenu:MenuItem ...
0
votes
1answer
40 views
How to retrieve the url address of a page hosting composite control?
I have a composite control, I need to get the address of page hosting it.