Tagged Questions
4
votes
3answers
317 views
C# .NET Website - adding a CSS class to menu elements
I've been using PHP for 7 years or so now, but as of today I've been thrust into using .NET for a project. Just for an insite:
This project features:
.NET4
Viewstate = false
Now my issue is this. ...
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
68 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
107 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
48 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
4answers
469 views
change masterpage image src from page in update panel C#
I have a master page that contains an image as follow:
<asp:Image ID="imgCompanyLogo" runat="server" ImageUrl="image path" />
and in a child page I want to edit the property ImageUrl as ...
2
votes
2answers
195 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
431 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
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
916 views
issue with Response.Redirect while using masterpage
I am developing a project using C#.net. Here in master page I have a button for search which will redirect to different pages in the project.
I am using "~/searchpage.aspx" for redirecting to other ...
1
vote
4answers
113 views
Get Page Title In Master Page Code Behind
I want to get the page title in c# master page code behind.
I tried using Page.Header.Title; property but it return null.
Please help me to get the title.
Thanks in advance.
Shibin V.M
1
vote
1answer
199 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
79 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
243 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
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
1answer
485 views
SharePoint 2010 - Refresh masterpage for subsites when applying a new one to root web
Let me expose my question :
I have a root site, with a masterpage, and many subsites. Some are using the root site masterpage (by inheriting) and some are not using the root site masterpage.
When I ...
1
vote
1answer
276 views
MVC C# Log In Masterpage
Hey,
I'm new to mvc .net.
I have a masterpage which has a log in on it. Now i want to be able to log on from any page.
But i can't seem to get it to work. I have a AccountController with the method ...
1
vote
2answers
425 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
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
188 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
173 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
536 views
dropdown lists on master page, dropdown lilsts manipulation(logic, events) on content page
I have a Content Page with drop down lists within an update panel:
<asp:UpdatePanel ID="upVehicleFilter" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
...
0
votes
0answers
34 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
47 views
issue with Page_Preinit
I am trying to override the Page_PreInit function inside my class _Default which inherits page. however when I try to compile I get the follwing error:
'_Default.Page_PreInit(object, ...
0
votes
2answers
37 views
MasterPage session value issue. c#
I am trying to set the value of the "MasterPageFile" property to the value of a session variable.
here is what I have now:
MasterPageFile = Session["selectedLayout"];
keeps saying this error:
...
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
2answers
96 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
228 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
0answers
46 views
How to specificy a masterpage on a sharepoint web part page
I have this code courtesy of Alex Angas in Programmatically instantiate a web part page in Sharepoint.
In my _catalogs/masterpage folder, I have 2 masterpages namely:
default.master
...
0
votes
2answers
80 views
How do I Update GridView on Masterpage from button on ContentPage?
I have a MasterPage with a GridView on a UpdatePanel. On one of my content pages I have a button which adds items to a session which I want to appear in the Gridview which is on the MasterPage. I'v ...
0
votes
4answers
256 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
1answer
329 views
C# WinForm Menu Strip
I m use to ASP.NET with masterpage and session. i put the menu in masterpage. After sucsessfuly login i save the variable in session.
Now i m working with Winform.
the Session i replace with variable
...
0
votes
2answers
153 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
123 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
478 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
1answer
167 views
ViewData in Master page for both MVC and WebForms
In my site I have the same MasterPage for both MVC Views and WebForm Pages.
I want to use ViewData inside the MasterPage code behind.
I'm getting an exception:
A ViewMasterPage can be used only ...
0
votes
1answer
474 views
FaceBook Connect Login Button Not Appearing In FireFox
I am working on a project for a client where they want to allow the visitors to the site sign-up using their FaceBook account.
I have used the FaceBook connect API for handling this. I have a ...
0
votes
1answer
301 views
How to use AjaxControlTookit's Tab Panel inside page inherited from masterpage
I'm trying to use both update panel and tab container on my page but when I compile the project I get this error...
The type 'System.Web.UI.ScriptControl' is defined in an assembly that is not ...
0
votes
3answers
467 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
155 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
309 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
166 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
481 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
292 views
MasterPage Load Theme
on asp.net C#,
i want to change the theme when page is load, this action requiers PreInit Event, Which Masterpage dont have. what is the solution for that issue?
thanks,
0
votes
2answers
930 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
2answers
162 views
Create master page at runtime
Hi
I want to create a master page dynamically by the user like the one DotNetNuke is done
and load the modules where the user needs. I also want to have nested master pages with the above approach.
...