Tagged Questions

6
votes
3answers
1k views

Is there a way to put inner controls inside a ASP.NET Custom Control?

I want to do something like (Updated example): <uc:Tabs> <Tab Name="A handy tab"> <Node Url="~/Default.aspx" /> <Node Url="~/Node2.aspx" /> </Tab> ...
5
votes
10answers
764 views

How to reduce this IF-Else ladder in c#

This is the IF -Else ladder which I have created to focus first visible control on my form.According to the requirement any control can be hidden on the form.So i had to find first visible control and ...
1
vote
3answers
619 views

ASP.NET control to render a <div>

The Label control in ASP.NET seems to render <span> tags, but is there a server control to render HTML within a <div>? Sure, I could set display: block and it might look the same, but I'd ...
1
vote
4answers
158 views

Simple WYSIWYG editor for ASP.NET that supports images

I need just a basic functions: bold text header text list (numbered) undo and redo insert image change background of editor I don't need to let the user directly change html code. There I have ...
1
vote
3answers
955 views

Increase the Width of a Dropdown List

How can I increase the width of a DropDownList in ASP.NET?
0
votes
1answer
205 views

How to get HTML code of a .NET control

I have a .net panel, and I want to send this panel via outlook to other recipients. For this I think I have to find the html code of this element. How to do that ? Thanks.