Web Forms :: Change Master Page To Another Master Page For That Page?

Apr 26, 2010

I have a question about master page.After i pushed button i would like to change my master page to another master page for that page, is that possible?

View 4 Replies


Similar Messages:

Web Forms :: Define Reusable Master Page Type To Reuse Parts Of The Master Page?

Jan 5, 2011

My Project is a normal web site, not a Web Project, and I am using VS 2005.

I am trying to define common Master Page Type in app_code which has an area to display error messages and the like. Very simple.

I added the following in app_code:

[Code]....

Also, I added the following in Master Page Source Declaration:

[Code]....

Also, I added the controls tblrowErrMsg and lblErrMsg as server controls to the Master Page.

Why I am doing this ?

This will allow me to display error messages from nearly any where inside the code in code-behined, app_code, and other core Class Projects (DLL).

View 4 Replies

Web Forms :: How To Change Content Of Master Page From Child Page

Dec 18, 2010

i got a textbox located in master page. How can i update it from child page?

View 7 Replies

Web Forms :: How To Change Master Page Hyperlink From Child Page

Sep 27, 2010

[Code]....

Now, from one of my ChildPage,I would like to do the following two things:

1.Change the text of the Hyperlink to:"MyHome"

2.Give the Hyperlink Navigate URL as :"SomePage.aspx".

How to do that in C#?

View 5 Replies

Web Forms :: Master Pages - How To Access Content Page From Master Page

Sep 5, 2010

I have a master page setup that is used throughout my site that is basically a header with a menu. I recently added a textbox and a button to this master page which is to be a quick search box that is available anywhere in the site. When a user enters text into the search box and hits the button, I need to load the actual content page which is used to search and show search results (which also uses this same master page), and have the text entered available so the search can be triggered automatically. Again, this search text box and button is now in my master page so it could be triggered from anywhere in the app... it serves as a convenient way to do a basic search from anywhere in my app, without having to first navigate to the actual 'search page' that already exists. You can also navigate to the actual search page, which uses the same master page, where there is many more search options.I'm thrown off by the master page arrangement, which I have not used until this project. What do I do?

View 4 Replies

State Management :: Master Page's Treeview Selected Node / Setting The Properties In Master Page?

Aug 2, 2010

I have a master page containing a tree and 3 dropdown lists. I am populating a context menu on right click of each node, and when clicked on any item of the context menu, it navigates to required pages.

My problem is after navigating to the required page, the selected values from the drop down lists and the selected node from the tree are getting cleared.

I can set the selected values for the dropdown lists by making some properties in master page.
But how do i maintain the selected node?

In my content page, i have got the valuepath of the right clicked node.

Or is there any other way than setting the properties in master page?

View 6 Replies

Page Title With Register Symbol Change In Master Page On Postback

Sep 21, 2010

I have a below Page title in my master page

<title>My Test Application NameŽ</title>

It renders Fine with Register symbol after the text "My Test Application Name" on start of the page but on any postback the title turn into My Test Application NameŽ Kindly let me know what can i do with minimal effort to fix this issue

View 1 Replies

Checkbox - Change Form Action From Aspx Page To Master Page Behind It

Jun 17, 2010

i have a master page and a child aspx page, coneected to each other. the master page has the form in it. Now the child page has checkboxes, whose value i would like to pass to another child page with same master page behind it. Can i change the action=abc.aspx and method=post?How can i send all the checkbox values (checkbox.text = abc@oke.com) to the next page? there are lots of these values that need to pass to nex tpage.

View 1 Replies

VS 2010 - Change Menu Items On Master Page Depending On Content Page Selection

Feb 15, 2012

I have a master page with an unordered list that contains items like, Home, Messages etc.

Now I am working on an EditProfile.aspx page and I want the menu to change and have items like Basic Information, Profile Picture etc. Sort of like facebook. What is the best way to accomplish this...

View 2 Replies

Change Master Page A Href Link From Content Page?

Sep 9, 2010

i have this on my master.page

<ul class="menu">
<li class="first" runat="server" id="Li2">
<a runat="server" id="A1" href="../NewEntry.aspx">Create a New Entry</a>
</li>
</ul>
when i go to content page ("NewEntry.aspx") i want the link name to be changed to "Update Entry"
<ul class="menu">
<li class="first" runat="server" id="Li2">
<a runat="server" id="A1" href="../UpdateEntry.aspx">Update Entry</a>
</li>
</ul>

View 4 Replies

How To Change Elements In Master Page From Content Page In Vb.net

Apr 13, 2010

i have a page called a1.aspx, with the Masterpagefile = a1_master.master. Now the master page has its own divs and images for design purposes. I want a way where when i load a1.aspx, certain chosen 's and images should be hidden(visible=false). how can i do this? how can i change the visibility of a div or an image in the master page from the content page?

View 2 Replies

C# - Get Content Page To Change Master Page Control?

Mar 5, 2011

Master page:

<form runat="server">
<Scirra:MainMenu runat="server" ID="MainMenu" TopTabSelected="home" SubTabSelected="link2" />
<asp:ContentPlaceHolder id="MainContent" runat="server">
snip

Content page:

Master.MainMenu.TopTabSelected = "forum";

I know I'm probably doing this wrong, but is this possible? I want to change a parameter of that control. It says 'inaccessible due to protection level'.

View 1 Replies

Web Forms :: Get Nested Master Page From Main Master Page

May 30, 2010

I'm trying to dynamically change the look of my main master page depending on what nested master page that the current content page is using .

So for example.

Main master page = main.master
My nested page = nested.master (uses main.master)
content page = content.aspx (uses nested.master)

So in the Page_Load event of main.master I want to add a switch statement that will check to see what nested master page is currently being used by content.aspx, or whatever content page is loaded.

So far I have got

protected void Page_Load(object sender, EventArgs e)
{
string nMaster = //This is the line of code that I am looking for.
switch(master)
{
case "nested.master":
//all my logic here.
break;
}
}

View 4 Replies

Web Forms :: What Is The Difference Between A Master Page And An Ajax Master Page

Jan 22, 2010

I've recently noticed this in my VS. What exactly is an Ajax Master Page and how is it different than a regular master page?

View 2 Replies

How To Use Sharepoint Master Page In A Separate Application As Parent Master Page

Sep 29, 2010

Is it possible to inherit a sharepoint master page(as a parent) in another application's master page which will be treated as child (i.e. after integrating that standalone application with the sharepoint application)? I am totally new to Sharepoint..

View 2 Replies

C# - Accessing Top Master Page Properties In A Nested Master Page Code Behind?

Feb 18, 2010

I have a nested master page that has its own master page. The parent master page has a property defined in its code behind.

Public ReadOnly Property SelectedPage() As String
Get
Return _selectedPage
End Get
End Property

How can I reference the parent master page's property from within either the child master page's code behind Page_Load or aspx template page?

View 3 Replies

How To Change Content Page To Another Master Page

Jan 22, 2010

I am using ASP.NET 2.0 and C#.

I have a master page and 5 content pages. I created another master page and want 2 of the content pages,which were under master1.master to master2.master.

For example, if the content page is called myhome.aspx, previously i had:

[Code]....

But the content page is still refering the Master1.master only..

How to change the content page to another master page.

View 6 Replies

C# - Change Master Page Value From Child Page?

Mar 3, 2010

I want to change master page some label value from child page.

View 4 Replies

Can Content Page Use ContentPlaceHolderID Of Master Parent Of Its Master Page

Sep 29, 2010

I have a 3 level nested master pages and a content page. parent1 is the top parent, parent2 is parent of parent3 and parent3 is the parent of the content page.

I get an error 'Cannot find ContentPlaceHolder xxx...' where xxx is a ContentPlaceholder. It resides in parent2 and content page is trying to fill it.

Can content pages only use their direct parent ContentPlaceHolders or can they also use any of the higher master pages?

View 2 Replies

Access A Control In Master Page Using Javascript Within The Master Page Itself?

Sep 16, 2010

How to access controls in master page using javascript? The master page consists of a search textbox, on key down event of the control I call a javascript function writtern inline of the master page. I get the value of entered in textbox in that javascript function. I have tried giving document.getElementById("<%=txtSearch.ClientID %>").value as well as document.getElementById("txtSearch").value. Both display error. I have to access the textbox control from within the master page itself!

View 1 Replies

Web Forms :: How To Change Master Page CSS

Apr 27, 2010

I have a master page that involved header and footer.

Then for Footer i have many link <a> / <asp:linkbutton> and these links will link to other pages.

Now how can i change the CSS ( background-color) for these link while i access that pages.

For example i clicked on link of abc.aspx, bgcolor of that link will change to black.

View 2 Replies

Web Forms :: Accessing Master Page's Body Tag From Aspx Page That Is Not A Content Page

Jan 8, 2011

I am using Master page and Content page combination.But how can i access <body> tag and it's event (onload, onunload) of Master page in .aspx page that is not a content page.

View 12 Replies

Web Forms :: To Get A Normal Html Page Inside The Master Page Instead Of Content Page?

Mar 25, 2010

I have a master page homeMaster.aspx and many content pages. However the situation is I have few .html pages. Now when a user clicks on a link the html page should get loaded.inside the master page. The problem is these are .html and not content page with .aspx.

View 4 Replies

Web Forms :: How To Change The CSS File Used In Master Page Dynamically

Oct 5, 2010

I am thinking that it would be better to use multipe CSS files and change them within the master page dynamically than it would be to use multiple master pages (basically one master page for each page, which defeats the purpose of the master page).

However, I do not know how to make a change to the master page before a standard apsx page that is derived from it is loaded.

View 2 Replies

Web Forms :: Change Image Source On Master Page?

Jul 13, 2010

I have a web site with a navigation bar on the left side that uses image buttons to select the page you want to see. Each button has 3 possible images - the normal image when the page is not selected, the mouseover image when the the mouse is over the button, and the selected image when the button has been clicked and the page selected. Formerly each web page had its own navigation bar but I have moved the common content into a master page.

The problem I have is how to make the button image of the selected page to be the "selected" image rather than the "normal" image. Basically I need to change the imagebutton source to the "selected" image when a button is clicked and reset it to the normal image when a different button is clicked.

Currently the Javascript looks like this:

var loaded = new Array();
function F_loadRollover(image,imageName) {
if (image && image.src &&
(null == image.out || typeof(image.out) == typeof(void(0)))) {
s = image.src;

[Code]....

How can I tweak the Javascript so that the src of the clicked image is "content1_selected" instead of "content1_normal" and then reset it when another button is clicked. This seems like it would be a common need when moving a navigation bar to a master page to eliminate redundant code.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved