Top "Web-controls" questions

Web controls are classes that allow you to create Web server controls on a Web page

define Custom Event for WebControl in asp.net

I need to define 3 events in a Custom Control as OnChange, OnSave, and OnDelete. I have a GridView and work …

c# asp.net custom-controls web-controls custom-event
Setting MyLabel.Text in Repeater's HeaderTemplate

Every sample I've found of doing this consists of writing a function outside of my page's OnLoad in order to …

asp.net repeater web-controls
How To: Manupilate SharePoint:AspMenu control (Style-wise)

What I want to do is to split-up the globalnavigation bar on the sharepoint 2010 so I can control what menu-items …

asp.net css sharepoint-2010 web-controls
What's the difference between Render and RenderControl in WebControl creation?

I've recently learned to write my own WebControls, but I'm still hazy on the difference between Render and RenderControl. I …

asp.net render web-controls
Working with frames in webbrowser Control

I am using <webbrowser>.Document.Window.Frames to get frames. My <WebBrowser> having 2 frames.My only …

c# asp.net vb.net web-controls
ASP.NET TextBox Control - Get the default text value in code behind?

I have been spying the MSDN and can't see a property/method for TextBox that allows you to get the …

c# .net asp.net web-controls
.net dropdownlist align text

I am trying to align the text in my .net dropdownlist to the right. Using CssClass I am able to …

asp.net css drop-down-menu alignment web-controls
Best practice when overriding Render methods on Asp.net WebControls, UserControls, Controls

When creating a custom WebControl, UserControl, Control and there is the need to override the various Render methods there are …

c# asp.net coding-style overriding web-controls
Webforms and jQuery, how to match the ID's?

I want to use jQuery with asp.net webfoms. Do I need to get a special toolkit so the .net …

asp.net jquery web-controls
When creating a web control should you override OnLoad or implement Page_Load

When you create a new web user control in visual studio it by default adds the Page_Load event. What …

.net asp.net web-controls