3
votes
4answers
101 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 …
2
votes
2answers
78 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"); %>
…
1
vote
1answer
22 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 …
1
vote
4answers
59 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
58 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 …
1
vote
2answers
90 views
View Control name concatenated with ClientID and masterpage control name in ASP.NET MVC
I am working with ASP.NET MVC application.
I have One master page having one contentplaceholder.
I have one view placed in the contentplaceholder of master page.
i have few textBoxes say "name", …
1
vote
1answer
61 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 …
1
vote
2answers
120 views
ASP.NET MVC - pull and populate masterpage contents from database?
Hello all, how can I pull masterpage content from the database and pass that into the masterpage so that my Views inherits from it? This is an example:
Clients to the website will have a unique code, …
1
vote
2answers
94 views
override form name of masterpage vb.net
It seems like I can't set the id or name of the form in my masterpage. [it's always "aspnetForm"]
Is there a way to override the uniqueID property of form?
I tried to create a class and inherit from …
1
vote
4answers
154 views
Define derived class in Masterpage (c#)
All of the web forms / pages that my project extend on a derived class for the default page class.
I.e. instead of
public partial class myfirstpage:System.web.ui.page
{}
i have public partial …
0
votes
3answers
57 views
How to load content pages async using jQuery?
TGIF,
I have a website I'm developing which is using ASP.NET masterpage/sitemap/content pages setup. I hate the "blinking" the site does when navigating between content pages using the asp:menu …
0
votes
2answers
24 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
26 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 …
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 …
