Tagged Questions
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
80 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
133 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
62 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
2answers
213 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
468 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
7answers
251 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, ...
1
vote
1answer
219 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
3answers
92 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
276 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
3answers
166 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
448 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
110 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
2answers
66 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
271 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
326 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
194 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
181 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
1answer
628 views
Timer in UpdatePanel
I have an asp:UpdatePanel with an asp:Timer. These are in a Master/Content Page. The code is below:
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
...
0
votes
0answers
49 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
30 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
2answers
117 views
facebox is not a function in asp.net masterpage
I'm trying to integrate my error handling with facebox to show my errors in a cleaner way. The problem that is occurring is that when I try to call jQuery.facebox, it is telling me that it is not a ...
0
votes
2answers
370 views
Get Textbox Value from Masterpage using c#
I have a search textbox situated on a masterpage like so:
<asp:TextBox ID="frmSearch" runat="server" CssClass="searchbox"></asp:TextBox>
<asp:LinkButton ID="searchGo" ...
0
votes
4answers
301 views
Javascript error 'Object doesn't support this property or method' on document.getElementByID?
I am attempting to run this JS function when a user clicks on a Panel (in a TableCell). This Panel is an element in a Content Page, which is used with the Master Page which has a Content Place Holder. ...
0
votes
2answers
169 views
change picture in master page
master1.master
HTML
<asp:Image ID="First" runat="server" />
tow.aspx
<%@ Page Language="C#" MasterPageFile="~/master1.master" AutoEventWireup="true"
CodeFile="two.aspx.cs" ...
0
votes
2answers
138 views
Load a page with pagemethods inside a div tag inside a MasterPage
I have a MasterPage which will appear in every page in the application and I'm trying to load a "LoginBox" which uses PageMethods inside a Div tag in this MasterPage
So far I have tried doing as I ...
0
votes
1answer
487 views
ASP.NET - If page is postback, label doesn't update
I have a MainPage.Master and another ContentPage.Master which uses MainPage.master as its masterpage ( i think it 'inherits' the main master page? not sure on terminology..)
On MainPage.Master.cs I ...
0
votes
3answers
544 views
Reload A Page Without Reloading The Masterpage
I have an asp.net website with a masterpage, when I press ,lets say login, it takes me to the login form using
Response.Redirect("Login.aspx");
Now, Is there any way I can update the ...
0
votes
2answers
168 views
How do I access properties from page in ContentPlaceholder in my MasterPage
I have following environment:
masterpage with a contentPlacholder
multiple pages which use this masterpage and implement a base-class (fooPage)
fooPage has a certain property (fooProperty)
Now i ...
0
votes
1answer
25 views
Using Hyper On A Page With Validators
I have a hyperlink on my master page that directs me to the homepage.
It works on every page except a page that has validators.
How do I make the hyperlink work?
0
votes
4answers
322 views
How do I access a public page variable of the only page from the master page?
I have a page - only ONE page for the entire site:
using System;
using System.Text.RegularExpressions;
using System.IO;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using ...
0
votes
2answers
181 views
Getting Master Page Control
I'm looking for a way to access my page's controls.
I found this function that allows me to enter the ID of my control and the "root control"
and than it searches the children of the "root control" ...
0
votes
1answer
500 views
ASP.NET CustomError Handling in MasterPage Error Page
I redirect Errors to Error.aspx
<system.web>
<customErrors defaultRedirect="error.aspx" mode="On">
<error redirect="error.aspx" statusCode="500" />
...
0
votes
2answers
1k views
How do I solve the error 'System.Web.UI.MasterPage' does not contain a definition for
I have two master pages and a content page. On my local machine this code works, but once I uploaded to the server I got the following error:
Compilation Error
Description: An error occurred during ...
0
votes
1answer
1k views
Hide user control present in master page
I have an user control in master page with id 'ucTopUser' and a button 'btnSub'.I need to hide the both control from my current aspx page.How can I do this?
0
votes
1answer
391 views
Masterpage to detect response redirect
I want to clear a placeholder control on my masterpage every time a Redirect is being made.
How can I achieve that in codebehind?
I could check whether the last saved url and the current url match,
...
0
votes
1answer
81 views
Can I know what page is in my master page's ContentPlaceHolder?
All the Google finds I ran into tell me how to use FindControl to access a control on the master from the content page itself.
However, what I'm trying to do is the opposite.
From the master page, I ...
0
votes
2answers
1k views
How to determine current Page.Title value from UserControl
I have a MasterPage, several content pages - each of the content pages have a UserControl.
In the MasterPage, I'm setting the Page.Title programmatically based on Page_Init ...