Search Results

3
votes

ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008

Is the control that you are trying to reference inside of the repeater? If so then you need to look them up using the FindControl method. For example for: <asp:Re …
0
votes

Update Panel inside of a UserControl inside of a Repeater inside of another UpdatePanel

If you set the UpdateMode property to Conditional (default is Always) on both UpdatePanels it should stop the outer UpdatePanel triggering when only the usercontrols updatepanel should have refresh …
0
votes

Using a user control in a base page class

Assuming that you will be running in an environment that supports reflection you could use these methods. private void SetValue(Control control, string propertyName, object value) { …