Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
255 views

Need help regarding query string in asp.net

I have a page create-quote.aspx. I want to open this page in different modes, depending on whether a querystring parameter is present or not. My question is at which event should I check, If I have a ...
3
votes
3answers
391 views

Where should I implement functionality in Page object - constructor or OnPreInit?

A question I have been thinking about for a while - would Stackoverflow users commonly implement significant functionality in a constructor (specifically in classes derived from the System.Web.UI.Page ...
2
votes
1answer
204 views

How to work with Master Page that is attached to the page via the page's basepage?

In my ASP.Net web application, I have a base page that implements functionality that spans all pages of the web application and my web pages derive from this base page. Since there is a single ...
2
votes
1answer
381 views

How do I avoid persisting data through ViewState for a child control in ASP.NET?

I have a control (say, a DataGrid or a ComboBox) which is a child of a user control. I want to DataBind it on every request, rather than have it's state persist through ViewState. I need to leave ...
2
votes
2answers
426 views

Converting ASP.Net Web Form to User Control OnPreInit event

I'm in the process of converting an ASP.Net webform into a User control and there an event that now says no suitable method found to override the event code causing the compile error protected ...
1
vote
2answers
148 views

ASP.NET MVC 1.0 Nested Masterpages

I have a problem with my master pages. They have such inheritance order: MainMaster1.Master can be nested by Nested1.Master, Nested2.Master, etc. At the same time MainMaster can be duplicated and ...
1
vote
4answers
426 views

If I cannot use OnPreInit in Controls, how can I add my controls dynamically on the right time?

I want to have a user control which will add some checkboxes in a asp.NET panel dynamically. Simply I was believing I can do that easily in control's OnPreInit method. But the thing is I have learn ...
0
votes
3answers
155 views

Override strongly typed @page masterpagefile

I am working with a third party asp.net application that uses master pages and nested master pages. My needs are to dynamically set the master page files for each page(.aspx). The application by ...