Tagged Questions

3
votes
2answers
347 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" /> &lt …
1
vote
2answers
71 views

Increase the Width of a Dropdown List

How can I increase the width of a DropDownList in ASP.NET?
0
votes
2answers
34 views

Third Party Controls for Address Input

Can anyone recommend a third party control for an ASP.NET site that supports the entry and validation of address information for multiple countries? For instance, when "USA" is s …
0
votes
1answer
116 views

Better performance: OnDataBound or iterate on PreRender

I have a menu where I am setting the selected value dynamically. Will I have better performance doing setting the value on a DataBound event or iterating over the menu in the Pre …
0
votes
2answers
1k views

Adding ‘onClientClick’ javascript to an ASP.NET Login control

I've got to put a login page from a 3rd party website in an iframe on another website that I'm developing. I need to add some JavaScript to break out of the iframe when the user lo …
0
votes
1answer
334 views

Is there a way to programmatically set the current node of a SiteMapPath control?

My site has a few pages that point to the same child page. I'm using a xml site map that will not allow me to duplicate a SiteMapNode with the same Url. My idea was then to give …
0
votes
1answer
165 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< …