Web Forms :: MasterPage - Setting Body Class Of ContentPage?

Aug 23, 2010

how to set the body class of a ContentPage when using master pages?

I want to set the body class so that certain elements of my page are styles differently from each other. e.g. Navigation links to so which is the current page.

View 4 Replies


Similar Messages:

Web Forms :: MasterPage Client Onload From ContentPage And Get Value From ContentPage Code Behind

Oct 24, 2010

I am trying to get value of a variable"offset" code behind of content page which is set from default.aspx through onload event from master page.But it gives null value every time. Here is my code.

Maste.aspx
---------

<head>
<asp:ContentPlaceHolder runat="server" id="Headers"> [code]....

View 10 Replies

Assigning Css Class To Masterpage Control From Contentpage In Asp

Jul 21, 2010

I have a unordered list in my master page....

<ul id="mainMenu" runat="server">
<li id="mainHome" runat="server"><a href="#" title="Home" class="home">
<span></span>Home</a></li>
<li id="mainManage" runat="server"><a href="Users.aspx" title="Manage"
class="manage"><span></span>Manage</a></li>
<li id="mainEnquiry" runat="server"><a href="account.aspx" title="Enquiry"
class="enquiry"><span></span>Enquiry</a></li>
<li id="mainReport" runat="server"><a href="EnquiryReport.aspx" title="Report"
class="report"><span></span>Report</a></li>
</ul>

From a content page i am assigning a css class to one of the list item.

HtmlGenericControl home = (HtmlGenericControl)this.Page.Master.FindControl("mainMenu").FindControl("mainManage") as HtmlGenericControl;
string cssToApply = "current";
if (null != home)
{
if (home.Attributes.ContainsKey("class"))
{
if (!home.Attributes["class"].Contains(cssToApply))
{
home.Attributes["class"] += " " + cssToApply;
}
}
else
{
home.Attributes.Add("class", cssToApply);
}
}
and my css,
#header ul li {
display:inline;
float:left;
}
#header ul a {
-x-system-font:none;
color:#FFFFFF;
display:block;
font-family:Trebuchet MS,Arial,sans-serif;
font-size:1.1em;
font-style:normal;
font-variant:normal;
font-weight:bold;
text-transform:uppercase;
text-decoration:none;
}
#header ul a {
-moz-border-radius:3px;
-webkit-border-radius:0.2em;
padding:3px 7px;
text-decoration:none;
}
#header ul a:focus, #header ul a:active, #header ul a:hover {
background-color:#829E7E;
outline-color:-moz-use-text-color;
outline-style:none;
outline-width:medium;
}
#header ul a.home {
margin:0 16px 0 17px;
}
#header ul #current a, #headermenu #current span{ /*currently selected tab*/
background-color: #BCE27F;
color:#666666;
white-space:nowrap;
}
#header ul a.manage,#header ul a.enquiry,#header ul a.report {
margin:0 14px 0 0;
}
#home #header ul a.home, #enquiry #header ul a.enquiry, #report #header ul a.report, #manage #header ul a.manage{
-moz-border-radius:3px;
-webkit-border-radius:0.2em;
background-color:#B9E27F;
color:#FFFFFF;
}

But i get the error, System.Web.UI.AttributeCollection' does not contain a definition for 'ContainsKey' and no extension method 'ContainsKey' accepting a first argument of type 'System.Web.UI.AttributeCollection' could be found (are you missing a using directive or an assembly reference?

View 1 Replies

.net - Change <body> ID With Javascript From Within ContentPage?

Sep 23, 2010

I'm looking to do a short term hack on a site. The site is a ASP.NET site with a master page. The body tag is in the master page. I'd like to specify which ID should be in the body tag from within various content pages. What I don't know is if you can have this type of access to the body tag when your JS is within the body tag. For various reasons, I'd like to try to accomplish this in JS, not .NET.

Rephrasing for clarity: I would like to use JavaScript to specify a body ID from within the body tag of a site. For example:

<body id="MyID">

JS to change MyID to another name

</body>

View 1 Replies

Web Forms :: How To Find A Control From A Contentpage When Looking From The Masterpage

Oct 7, 2010

I have a FreeTextBox control on a page that has a masterpage. This FreeTextBox control is in the maincontent.

View 5 Replies

Web Forms :: How To Avoid The Refresh In MasterPage In ContentPage

Feb 13, 2010

I have a masterpage with a timer that shows server time and refreshes every second, on the content page I have a chat program with ajax, refreshes every to second to get the last messages entered.

I have a Html TextBox and a hidden Submit Button, when user write a text, and hit the enter, I check to see if this is the enter key and then submit the message,it is working perfectly in IE, but in FireFox and Opera it show the same message twice. I think the problem is the Timer, is there any way to avoid the MasterPage timer in this particular content page?

View 1 Replies

Web Forms :: Reference To LINK Tag (css) In MasterPage From ContentPage?

Apr 24, 2010

I have applied my stylesheet in my masterpage the following way:

[Code]....

In my contentpage I wish to change the stylesheet of my masterpage, but I'm not sure how to reference to it.

I've tried the following, but I can't scope to the "test".

<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
test.Href = "~/CSS/AlternativeMenu";
}
</script>

View 3 Replies

Web Forms :: Refresh Menus On The MasterPage After ContentPage PostBack

Jul 15, 2010

We have a master page file in which we have a MenuControl. We are displaying some menus according to users credentials. We are handling MenuItemDataBound event inside master page for adding & removing menus.

There is user edit page{ContentPage} on which user may edit his own credentials. After saving the edited data {users credentials} by ASP.Net Button control, the MasterPage's MenuItemDataBound event doesn't fire (in case of refresh it is firing but in case of post back it is not firing).

We need to recreate/refresh MenuItems for master pages after saving the user and add/remove any nodes from Menus.

View 4 Replies

Use MasterPage's Viewstate In ContentPage?

Feb 10, 2010

Asp.net: Can we use MasterPage's viewstate in ContentPage ?

View 1 Replies

Jquery - Masterpage And ContentPage JavaScript Function Error?

Feb 27, 2011

I am using a Masterpage for my upload_photo.aspx which displays the file upload page using colorBox. However, ever since i added (code below) in the Masterpage colorBox doesn't display:

<script type="text/javascript">
$(function () {
$("#txtAutoCompleteSearch").AutoComplete("search.aspx?searchword=");

[code]...

View 1 Replies

AJAX :: How To Set MasterPage Only Render ContentPage And Control Inside UpdatePanel

Mar 27, 2011

I have a DateTime in my MasterPage.aspx that is outside of UpdatePanel1. There are two Hyperlink controls inside UpadatePanel1 to navigate or to move to the other pages. Full code of MasterPage.aspx is below.

[Code]....

If the user clicks Hyperlink to navigate or move to the other page, the DateTime will change. It means that my MasterPage.aspx render the whole page when the user clicks Hyperlink. I do not want this behavior. I want my MasterPage.aspx only render the ContentPage and the
Hyperlink inside UpadtePanel1. Controls outside UpadtePanel1 like DateTime should not be rendered again. Please advise the code to achieve my example goal.

View 2 Replies

Web Forms :: Change Body Id Of Masterpage?

Dec 9, 2010

Is there a solution to change the body id of the masterpage dynamically in the code behind from my pages using a masterpage?

I have a css file that uses body id to change some classes.

I have tried several examples but no luck. Does anybody have a working solution?

View 10 Replies

Web Forms :: Where To Put Script, Head, Body When Using Masterpage

Jul 29, 2010

I'm successfully using a masterpage for all my .aspx's... the below is typical... where though can I place script such as this into my .aspx below since I don't really use a head/body?:

[code]....

View 5 Replies

Web Forms :: Setting Body Text For Email Message?

Nov 18, 2010

what can I use on a form that will hold images and text and can be sent as the body in an Email? For example, can I use a panel and add a table inside it and then organize text and images in the table and then use the panel as the body in the email?

View 2 Replies

Web Forms :: Set Body Css Class In Master Page?

Jan 23, 2010

I'm trying to write a way of setting the css class on the body tag in a master page from the content form page through a page directive variable. Everything seems like it should work here, however when I use my BodyCssClass variable, the page content isn't generated, just the master page content. Also, if instead of using the page directive variable, I just put <% BodyCssClass = "mybodyclass"; %> in default.aspx, that works.

[BasePage.cs]
using System;
using System.Data;
using System.Configuration;

[Code]....

View 5 Replies

Web Forms :: Creating A Class Or ID For The Body Tag Dependent On Browser?

May 12, 2010

Im new to learning C# and .Net platform,

I have been wondering how i would go about:

1. Detecting the browser version

2. Using the browser version and associating a class or id for it

3. Using this class or id to be assigned to the html body tag.

Keeping one stylesheet for all browsers but having browser specific styles if any fixes are required. I know this can be done, i just dont know how.

View 6 Replies

Web Forms :: Change Masterpage "body" From Default.aspx.cs?

May 16, 2010

I'd like change masterpage.aspx "body" element style from default.aspx.cs. how can I do It?

View 15 Replies

Web Forms :: Setting Page.Async From MasterPage?

Mar 21, 2011

I'm using a CMS, which removes my ability to access the actual Page, I can only program Master pages. I need to set the Async property of the @Page directive on a particular page, but can't figure out how to do so from the Master page.

View 2 Replies

Web Forms :: Setting A Masterpage's Controls TAB Indexes Programmatically?

Jan 25, 2011

I've tried to get a list of the IDs of the controls, but when I try to access he ID field of control at index 0 I get a null reference exeption, even though the collection has a .Count == 5. Any clue why or if it can be done and how? I've tried this both in Page_Load and off a button_click event.

Assuming you need the ID to set the proper tab index via the control collection object, the following code should produce the list of the names of the 5 controls. The output is '01234' to the multiline textbox... (the values of x)

[Code]....

View 4 Replies

Web Forms :: Setting Culture From Masterpage And Save It To Profile?

Jul 26, 2010

I need to let the user to choose their preferable language from links in masterpage, after clicking the link, they should see the same page with the language which they select.

And this setting is save to their profile.

Here are some problems that need to be solve.

1. master page don't have Profile, User object in it, Global.asx too don't have Profile object. How do I save and load setting from Profile?

2. How do I stay on the same page? LinkButton with postback?

View 1 Replies

Web Forms :: Setting History Points For Crosspage Posting With Masterpage?

Jan 11, 2011

I am trying to set history points for a form that posts to a second page. Both the first page and second page are content pages in a master page.The form is in an update panel and consists of several textboxes, one radiobutton group of two radiobuttons and one ajax calendar control. The last two textboxes are a zipcode box and a county box. The county box is populated from a database table when the user fills in the zipcode in a textbox and tabs out or clicks in the next textbox.

View 3 Replies

Web Forms :: Referencing A Control In A MasterPage From A Class?

Nov 10, 2010

I have created a class within the App_Code called shared_methods.vb where I use methods that are frequently used within several pages.

I have a hyperlink control within the masterpage that i want to change the NavigateUrl depedning on what page. Just for better coding i would like to define the variable holding the hyperlink with my shared_method.vb.

I have:

Dim hl_back As HyperLink = CType(Master.FindControl("hl_master_back"), HyperLink)

This works within a page but not within shared_methods.

View 1 Replies

Setting Value In MasterPage From UserControl?

Feb 17, 2011

I have the following situation:

A MasterPage MyMaster.Master

A Content Page Content.aspx

A UserControl MyUserControl.ascx

MyUserControl.ascx is being used in Content.aspx and is being added programatically. The content page is using MyMaster.Master

MyMaster.Master has a variable which I can access from Content.aspx as I have the @MasterType directive set. What I am wanting to do is the following:

1) Set a value in MyUserControl.ascx

2) Access value from Content.aspx

3) Set value in MyMaster.Master

Step 2 is implemented in the PageLoad of content.aspx as follows:

Control ucControl= LoadControl("/UserControls/MyUserControl.ascx");
UserControls_MyUserControl myUC = ucControl as UserControls_MyUserControl; [code]....

The PreRender handler just sets a value in MyMaster.Master to true. In MyMaster.Master I check that value in PageLoad and try display something if it is true. This does not work.I suspect it has something to do with the Page Lifecycle, but I cannot seem to find which part is wrong.

View 1 Replies

Web Forms :: MasterPage Call To Class Doesn't Work

Dec 8, 2010

I am porting my simple Role Based Auth to ASP.NET. It requires this check on each page:

[Code]....

If put in each page's OnLoad, it works fine. But when I add it to the masterpage, it doesn't work. Is there something about the ServerVariables or Session Object that would prevent using those in a masterpage? Is it an issue calling my class from a materpage?

View 1 Replies

Web Forms :: Shared Class On Masterpage And Normal Page?

Jul 21, 2010

I've created a nice menu class and used it in my MasterPage like "using My.GeneralRoutines".This class is working well and everything is fine UNTIL I want to access this same instance of that class that was created at MasterPage level on "a_page.aspx.cs" (this page is using the MasterPage like :)

[Code]...

View 8 Replies







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