Tagged Questions

5
votes
4answers
637 views

Create a masterpage that fits any screen resolution

I have created a masterpage and I want the ASP.NET pages attached to it to fit any screen resolution. Its a html tables based design. I read that if you keep tables width and height to 100% then it ...
3
votes
1answer
88 views

specify masterpage of subdirectory pages in web.config

I know its possible to specify the masterpage of all pages using the pages element of the web.config but is it possible to specify that for all the pages under /foo/ that they should have a certain ...
3
votes
1answer
2k views

ASP.NET - Update panel in Master page, refresh button in Content Page

I have Update panel in Master page: <asp:ScriptManager id="CartScript" runat="server"></asp:ScriptManager> <asp:UpdatePanel id="CartBox" runat="server" ...
3
votes
2answers
709 views

How to use jQuery AJAX in ASP.net master page?

I have an ASP.net web application with a master page. In the menu bar of my master page, there is a search function where a user types in a query and clicks a button. When the button is clicked, the ...
3
votes
2answers
1k views

Change the master page from code behind

I have a web page named MyPage.aspx and two master page named Home.master and BlanK.master. By default MyPage.aspx uses Home.master.But based on some condition I need to change the master page from ...
2
votes
1answer
70 views

why we use @Master type?

if we have a master page and a content page.so the content page @Page directive look like as <%@ Page Language="C#" MasterPageFile="~/Site1.Master" .... /> so , in order to access master ...
2
votes
2answers
109 views

Masterpage CSS link can't resolve ~

I'm working on a web interface in C# ASP.net. If it matters, I'm using XHTML 1.0 Transitional. This website has a masterpage thing going, and that's where the problem came in. When I used a real ...
2
votes
1answer
49 views

How to Avoid Masterpage's url rewriting

I have a masterpage in the root directory of my site. Then in another directory, I have a web form that is set to use this masterpage. The problem is that when the page is shown, all the Urls from ...
2
votes
3answers
129 views

how to make masterPage contents visible based on role?

I am developing an application with masterPage. I want to put loginStatus, LoginName controls into masterPage. now, I want these loginStatus and LoginName controls be visible only if the user is ...
2
votes
2answers
126 views

masterpage with usercontrol problem

I have a masterpage and 2 usercontrols(A.ascx & B.ascx) on this masterpage. In these one of them usercontrol(A.ascx) have another usercontrol(C.ascx). And I use this masterpage on default.aspx ...
2
votes
1answer
138 views

How to handl this masterpage in ASP.NET

I am now creating a website.I v almost done for Login page,register page and change password page.I v created the masterpage which is masterpage.master. After i create a folder Accoumt and put all ...
2
votes
2answers
196 views

Exception being handled in masterpage

If an exception was thrown in a page, would it be possible to be handled within the masterpage (assuming it wasn't handled before?)
2
votes
2answers
434 views

how to update content page from master page?

Menu links are in the master page and and the corresponding click events are written in the master page itself. I have only one content page. Data is saved in html form in the DB and that will be ...
2
votes
2answers
470 views

ASP.Net Background Music

I have a website with a master page and I want to play an mp3 file in the background, in every page. tried bgmusic but its not supported and so is embed. Any Ideas?
2
votes
7answers
233 views

problem with masterpage and jquery

I have a MasterPage that inside its content section I added a FORM element. When accessing that page, all my controls are renamed since the FORM is runat=server. And thus when selecting in jquery, ...
2
votes
3answers
148 views

Is Microsoft planning to remove MasterPages from MVC?

http://weblogs.asp.net/scottgu/archive/2010/10/22/asp-net-mvc-3-layouts.aspx After reading a bit through the post, it seems that the MVC team is trying to replace the MasterPage functionality. This ...
1
vote
3answers
64 views

hide google analytic code

Is it possible not to show the google analytic code on the master page? I mean can I place it somewhere where no one can see it but still get all the analysis on the application ?
1
vote
1answer
200 views

linkbutton open new page and pass value without using query string and session

I'm working the linkbutton in a nested masterpage and want to pass a value to a new page . What I want to do is once I click the link button. a new page will be open and keep the current page. in ...
1
vote
2answers
78 views

Refer Jquery in ASP.Net master page

I am using the Jquery library, and I understand the suggested approach is to reference it at the bottom of web page, within the <body> tag & not withing the <head> tag. But when using ...
1
vote
2answers
83 views

best web design approach

I'm more of a asp.net web app dev, I came across my first side project and I stumbled on what is the best way to style a web page. Here's my problem: I need to style a master page so any content that ...
1
vote
1answer
137 views

Master page titles

Iv been trying to do this for 2 hours, and google didnt help either. What im trying to do is, set the master page title to "My web page", and then from the child pages i want to append to this title. ...
1
vote
1answer
153 views

How To: add dynamically HiddenField in masterpage base page

I have a Base MasterPage class, from which my masterpages will inherit. I have some javascript functions there for it's child pages to include. As it's a base class, it does not have a visual designer ...
1
vote
1answer
144 views

Reading and appending to master page titles?

what im trying to do is to read the current master page's title, and append something to it from the codebehind of the child page. I tried to use: this.Master.Page.Title.ToString() But it returned ...
1
vote
3answers
80 views

Getting Child page title from user control on Master page

I have a user control in the Master page. In the code behind of that ascx, I want to get the title of the page. The title is being set in the head section with tag in the child pages.
1
vote
2answers
54 views

Change master page for nested master page at runtime?

I have 2 master page: master1.master, master2.master And i have another nested master page nestedMaster.master that nested from master1.master. Question: How can i change nested master page file of ...
1
vote
2answers
89 views

Access content page elements from jquery

I am trying to access the value of a textbox and Hidden field from jquery. I am getting value as undefined. These controls are inside the content page of my master page. <input ...
1
vote
4answers
126 views

Asp.Net MasterPage and JQuery

I have a jqueryscript that works with asp.net pages without masterpages. When the page gets an reference to a masterpage the script stop working. The masterpage: Within the header: <script ...
1
vote
0answers
78 views

Sitemapnode(breadcrumb) value changes when multiple users

I have a user website, having pages Home-->Brands --> Properties --> Designs --> Objects. Each page having its own sets of selection value. Using breadcrumb navigation (sitemap path) in master page, ...
1
vote
1answer
88 views

Adding tabs to asp.net content page

I have many content pages. In master page I have added the tab About us, support, contact us. Which will come in all pages. But some pages will have different tabs from other pages. EX: group page ...
1
vote
0answers
203 views

ModalPopupExtender and DynamicPopulateExtender in MasterPage

I have read that it is not a good idea (or just straight not possible) to put ModalPopups and DynamicPopulates in Site.master. However, if I wanted to have a link in the header/footer that opened up a ...
1
vote
2answers
206 views

ContentPlaceHolder with link in master page and default.aspx page

I am using <head runat="server"> <title></title> <link id="Link2" href="~/App_Shared/CSS/AjaxStyle.css" rel="stylesheet" type="text/css" runat="server" /> ...
1
vote
2answers
248 views

How to check if the MasterPage logout button is clicked in the content page

I have a requirement where I need to check if the user clicks the logout button in the Master page and skip a method in content page.Because that method has Response.End which causes the Response to ...
1
vote
5answers
113 views

Master Pages Controls Id After Rendered

In my asp.net projects there is a master page and there is a control on Contentplaceholder1. Changing this control's id after rendered like "ctl00_Contentplaceholder1_control" in my local. But at the ...
1
vote
3answers
144 views

Different menu in master.page depending on login type

I have 2 types of users (phonebookers and salesrep). They are supposed to have 2 different menu bars, pending on their login. From the login.aspx - I set a number of Session[]s among them an ...
1
vote
2answers
617 views

catch close browser with onunload function using master page in ASP.NET

I have a website with master page. I want to catch a user trying to close the browser/tab. When I try using onunload in the body tag, it fires not only when I try closing the browser, but also when I ...
1
vote
2answers
104 views

masterpages and css

i set some css rules and html tags, that looks desirable in the design view. But when a child form of the masterpage loads the page, it looks different. Can a child css rules dominate the properties ...
1
vote
4answers
460 views

Is there a concept of a master page (like in asp.net) for WPF?

I've started a WPF (web-based) application and it has multiple pages. I want to implement the concept of a Master page in WPF, so that when I make changes in the design/layout of one page then all ...
1
vote
2answers
430 views

Iframe Canvas application with Master Page

I am developing an Iframe-Canvas Application. I am using Master Page to gain permission access & display few details, that works good. Then on content Page I want to display a textbox & ...
1
vote
3answers
104 views

How to I make a count on specific category when querystring is empty?

I have a menu on my masterpage / defaultpage where I'm listing x categories. I would like to make a count of how many products there are in each category. EX: Bananas(20) Apples(8) Strawberries(5) ...
1
vote
1answer
292 views

setting value in MasterPage from UserControl

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 ...
1
vote
2answers
64 views

MasterPage - Downside to referencing Controls as properties?

In my ASP.Net MasterPage I sometimes have controls that need to be accessed by most Pages. Now instead of using this to access the control ((Label)this.Page.Master.FindControl("lblBreadCrumb")).Text ...
1
vote
3answers
243 views

In the child page, I want to find master page's Content placeholder and add text to it. How do I make that possible?

I tried this much:- protected void Page_PreInit(object sender, EventArgs e) { class1 obj = new class1(); DataTable dt = new DataTable(); dt = obj.get_text(); ...
1
vote
4answers
302 views

Access Page Controls while usin MasterPage

I tried to write a little function to reset the form to default. Therefore I want to access the Controls of the page. I'm using a MasterPage. Maybe because of that, I have no access to the ...
1
vote
4answers
189 views

Acess controls on ContentPages via Javascript by MasterPage

I need my MasterPage to be able to get ControlIDs of Controls on ContentPages, but I cannot use <%= xxx.CLIENTID%> as it would return an error as the control(s) might not be loaded by the ...
1
vote
2answers
174 views

finding control an a page with master page

I have to find a Control(a Table) in an aspx page with master page : the Master page have this : <asp:ContentPlaceHolder ID="MainContent" runat="server"/> and int the child ...
1
vote
3answers
373 views

ASP.Net - How to access masterpage Object from regular page?

In a project I'm working on, the master page codebehind does a load of complex checks and confirmations that decide the navigation list displayed on the TreeView of the page. Now, I need a way to ...
0
votes
0answers
35 views

ASP.NET - Master Page List Variable Magically Empty after Default Page's ImageButton OnClick Method?

I've got a ListView control with a List of 'Books' bound to it. The List is a 'global' list that is created on the Master page. On the Default page, I bind the ListView to the Master.List structure. ...
0
votes
1answer
31 views

How to access Html Links which are in Master Page in View in asp.net mvc

I have three links inside master page up on clicking those three links user will be navigated to respective views. The point is I need to high light the link from which he came to the view. <ul ...
0
votes
1answer
27 views

fieldset not work in page that in MasterPage

is Fieldset not Work in default.aspx that use MasterPage ? <fieldset style="border-style:double"> <legend>Livraison</legend> qsdf </fieldset> it not show the ...
0
votes
1answer
141 views

asp.net add background image to a few pages using single masterpage

I am trying to add background images to only a few pages where as the other pages will not have one. Do I need a separate masterpage for the pages with background images or can I do this by ...

1 2 3