0
votes
0answers
12 views
Proper use of MasterPages
I've been looking into different methods of implementing masterpages.
Use the masterpage only for layout, include common controls on every page
Include controls on the masterpage, use a masterpage …
0
votes
2answers
22 views
Early response termination when using an ASP.NET Master Page
I have a page which needs to terminate execution of it's code (which is run at render) but not stop the execution of the MasterPage.
The problem is this,
page 'Default.aspx' uses the masterpage …
0
votes
1answer
25 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
32 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 …
1
vote
4answers
55 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
2answers
52 views
ASP.Net MVC: How can I easily change the tab color of my navigation menu based on the tab that I’m on?
I want to implement my navigation tabs somewhat like the ones on this site, and I've heard that this was built using ASP.Net MVC. If I'm on stackoverflow.com/users, than the "Users" menu tab is …
0
votes
2answers
79 views
When is the MasterPageFile located in ASP.NET MVC WebForms ViewEngine
When is the MasterPageFile property of a view/page checked that it exists in ASP.NET MVC WebForms view engine?
What I want to do is have the following code not output the error:
Parser Error …
0
votes
2answers
51 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 …
3
votes
4answers
99 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 …
0
votes
3answers
82 views
~masterurl/default.master does not exist
Hello all,
I try to create a custom webpart page. I tried a book example that start with :
<%@ Page MasterPageFile="~masterurl/default.master"
…
0
votes
5answers
61 views
set body id to current file name in .net
I am not a .Net guy but trying to get update an existing .net site. Trying to set up a unique id for the body tag even though I am using a master page.
<body id="<% page_name %>">
…
2
votes
2answers
72 views
Renderpartial conditionally on masterpage in asp.net mvc
Hi I have the following menus defined on my masterpage in a asp.net mvc web application
<%Html.RenderPartial("AdminMenu"); %>
<%Html.RenderPartial("ApproverMenu"); %>
…
0
votes
3answers
113 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
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
48 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 …
