Search Results

0
votes
2answers
304 views

Accessing a Property of a Master Page from a class that’s not part of a content page in ASP.NET

So I'm wiring up my first MasterPage, and everything is working great except for one thing. This is a legacy app, and I have an old BasePage class that all my content pages inherit. It inherits f …
0
votes
1answer
112 views

ASP.NET Wizard Back Button won’t work

I have a ASP.NET Wizard running my checkout process of my shopping cart. I just added a Paypal Express checkout link to my 2nd step. The Paypal process takes the user away from the page and then …
1
vote
2answers
478 views

ModalPopupExtender won’t render in front of everything in IE7/IE8 Compatibility mode

I have a ModalPopupExtender from the AjaxControlToolkit that is working properly in Firefox, Chrome and IE8, but when I run it in IE8 Compatibility mode, it pops up behind the content of my page, r …
0
votes
1answer
173 views

ASP.NET User control on a master page renders behind my main content when viewed in IE7

So I have a user control in my master page. When it's viewed in IE7 (or IE8 Compatibility mode), it renders behind the page content from the ContentPlaceHolders. I've tried manually setting the z …
0
votes
1answer
195 views

Best way to display a loading gif while a database call process on the first page load.

So I'm new to Ajax. I have an ASP.NET wizard panel wrapped in an ASP Ajax UpdatePanel. The Ajax is working well, with the page doing partial updates as you step through the wizard. I'm even firi …
0
votes

Accessing a Property of a Master Page from a class that’s not part of a content page in ASP.NET

So I had my BasePage in App_Code and was trying to set a property of my NIMS_Master class which was in the application root directory. I had to create a MasterBase class that inherits from System. …
0
votes

ASP.NET Wizard Back Button won’t work

Well, I'm not sure why it was doing it, but overriding the blackbox PreviousButtonClick event on the wizard with the following code fixed it. It seems to me like this should be the behavior the bu …