Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
275 views

Why clear controls in CreateChildControls

All of the examples of ASP.NET composite controls always clear child controls as the first action within CreateChildControls. Why is this? As I understand it this method is always called via ...
0
votes
1answer
39 views

what will happen if we don't call base.createchildcontrols()

I just would like to know what will happen if we don't put base.createchildcontrols() in the code. Will composite control be created without calling base.createchildcontrols()? ...
0
votes
0answers
17 views

createchildcontrol() - user control, custom control, web control

I am new to .Net trying to understand about different controls here. I know, custom control, an extension of existing control. User control, a complicated control constructed in .ascx file and can be ...
0
votes
2answers
50 views

What is the correct ASP.NET Control event/method in which to add nested controls?

What is the correct event/method in the ASP.NET life cycle to dynamically add Child Controls ? My objective is to ensure that all the input controls on a User Control have the correct associated ...
0
votes
1answer
98 views

Unable to retain value of a label during post back(button click) in sharepoint

While writing code for connecting two webparts,I created a two labels. the text value for both the labels were written in OnPreRender method. However, i forgot to add control for one label in ...
0
votes
1answer
158 views

RadGrid override CreateChildControls

I'm extending the tellerick RadGrid control to give it an optional CustomSearchControl. protected override void CreateChildControls() { this.Controls.Add(CustomSearchControl); ...
0
votes
3answers
659 views

SharePoint AJAX implementation: ScriptHandler being added twice

I am currently in the process of setting up AJAX capabilities in a SharePoint environment to support web parts I'm creating with C#. I am using Microsoft's walkthrough as a starting point just to get ...