Tagged Questions

3
votes
4answers
98 views

Are master pages the way to go?

I may be nuts, but master pages scare me because I fear that once I am locked into using a master page, I will encounter a situation where I will want to inherit only 90% of the visual content of the …
1
vote
4answers
53 views

how to display none through code behind

I have tried this login_div.Style("display") = "none"; But it's not working.how can I set the display of the div to none through code behind, in aspx I have a div: <div id="login_div" …
1
vote
1answer
60 views

Creating a Visual Studios 2010 ASP.NET application without a Masterpage

I've spent a decent amount of time on the web and messing around in the settings and I haven't been able to find a way to create a project in VWD 2010 without a masterpage. Just removing the reference …
0
votes
1answer
23 views

Masterpage, Intelligencia url rewrite and updatepanel = possible ?

Hello all, I cannot seem to get my updatepanel to work while using urlrewrite. It does work in terms of code execution, but it refreshed my whole page instead of the usercontrol which contains the …
0
votes
3answers
29 views

how can i insert login control on the top of default page

in my master page there is a login status when i click on it the page is redirected to login page.now i want to create login control in the home page itself so that users dont have to visit loginpage …
0
votes
2answers
50 views

State in ASP.net Master Page

We have a bug that we are trying to fix. It looks like one user can see another users data it they hit the same aspx page at the same time. I was wondering: If we store data in a property on the …
0
votes
3answers
106 views

Master Page getting Could Not Load Type error when publishing

Everything works find locally, but when I publish my asp.net application to a remote server I get the following error: Server Error in '/' Application. Parser Error Description: An error occurred …
0
votes
1answer
46 views

Override ASP.NET WebForms MasterPage Header Render Function for SEO

Our ASP.NET WebForms MasterPage is making a muck of our meta data and title. If you go to http://beta.orcsweb.com you will notice our meta tags don't have line breaks and the proper formatting, and …
0
votes
1answer
56 views

Programmatically define a nested masterpage’s master, Is it possible?

Currently I have a site that is set up using a masterpage and a nested master page. The master page setups up the header and footer info. The nested masterpage is used once logged into the site. …
0
votes
1answer
24 views

MasterPage has a control in it, and the controls OnClick comes back as method not found in ASP.NET

I have a linkbutton in my masterpage: <asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"></asp:LinkButton> in my code behind protected void Transfer(object …
0
votes
2answers
39 views

Get all controls from MasterPage ChildPage

Hi. Is it possible to get all controls from a ChildPage from the MasterPage the child is nested in? I need all the controls within my form tag, but when i use a MasterPage i cant see the controls …
0
votes
2answers
170 views

Relative Path in master page for img tag

I have a tag in a master page. I use this master page in many folders. So the src path of the tag should be different for each folder. Here is my code : <img src="images/1.gif" /> and I …
0
votes
3answers
75 views

How to call a method of an user control from a page in asp.net 2.0 ?

Hi all, I have a usercontrol used in a masterpage. I have added a page with the masterpage. Now I need to call a method of the user control from the page. How to do this? Please help.
0
votes
1answer
192 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 …
0
votes
0answers
280 views

jQuery Tabs with Masterpage - space between tabs and tab content

I'm trying use jQueryUI tabs in a content control. The code below works on a page that doesn't use a MasterPage. When I use it in a content control there is a large gray space between the tabs and …