Tagged Questions
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
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 ...