Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

How to add meta tag to ASP.Net content page

I have several content pages hanging off of one master page. I need to add a refresh meta tag to one of the content pages but I can't see where I can do this. Any help would be much appreciated.
3
votes
1answer
153 views

Viewing CSS Intellisense in partial views and Content pages - Visual Studio 2010?

I am trying to figure out how to get Intellisense for CSS to render when in a partial view or a content page. Of course I don't want it to render a runtime, as the css comes from the masterpage. I ...
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
3answers
557 views

Can't find ASP.NET master page

I'm trying to get my content page to be able to access an ASP:Literal on a master page. I have my content page as: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="viewProduct.aspx.cs" ...
1
vote
1answer
173 views

Find A Control (Inside Master Page) From Content Page, Error = NullReferenceException

Please See The Simple Example Below For Understanding My situation. (Attention To Comments Inside Codes) Master Page (ASPX) : <%@ Master Language="C#" AutoEventWireup="true" ...
1
vote
2answers
119 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
2answers
7k views

How to call javascript function from asp.net button click event

How do I call the showDialog from a asp.net button click event. My page is a contentpage that has a masterpage associated with it. I have tried the following <asp:Button ID="ButtonAdd" ...
1
vote
3answers
982 views

page_load event in Master and Content Pages

Here is the sequence in which events occur when a master page is merged with a content page: http://msdn.microsoft.com/en-us/library/dct97kc3.aspx So, my problem is: I have one login page (not use ...
1
vote
1answer
152 views

jquery best selector for pages base on master and content page (In Content Page)

i am looking for the best selector (jquery) in content pages ! i found the below selectors , but what is better and i should use that in .net 4? alert($('#hfFirstTimePageLoad').val()); -> ...
1
vote
3answers
518 views

ASP.net master page/content page simple design problem

My master page: public partial class MasterPages_Main : System.Web.UI.MasterPage { public bool IsLoggedIn; protected void Page_Load(object sender, EventArgs e) { // Check login ...
0
votes
0answers
9 views

Execute user control in master page after content page is executed

I have a user control defined in my master page at the very end "TrackingModule1" which reads data from checkout cookie and creates javascript code that gets rendering onto the page [ViewSource]. I ...
0
votes
0answers
90 views

Pass values to content page from programmatically added masterpage menuitem?

I'm working on a project that uses a master page and content pages. My masterpage a navigation bar: <asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false" ...
0
votes
1answer
102 views

Is it possible to add style sheet only to a content page?

In a asp.net webforms project, I need to add external style sheet only to content page, If I put css link after the <%@ Page> declaration it gives an error saying Error 103 Validation (XHTML ...
0
votes
3answers
114 views

MasterPage And ContentPage Body Css Problem?

I have a Masterpage and I have a content page from this masterpage.. I must use different css for body tag for only this contentpage? How can ı do this? this is my masterpage's css body, div, ul, ...
0
votes
1answer
88 views

VirtualPathProvider problem with content pages

I have a VirtualPathProvider that works fine with asp.net pages. It compiles in runtime and run everything well. But, when I try to open a page that contains asp:Content tags, I always getting: ...
0
votes
1answer
161 views

using a masterpage's namespace from content page

Can i use namespace which is imported on masterpage ? i can import and use namespace on masterpage like that.. <%@ Import Namespace="utl=portal.lib.SnkUtilities" %> and on markup; <a ...
0
votes
1answer
211 views

page events in master page and content page

The thing is i have a Master page and a Content Page. I have a LoadComplete in Content Page and a PreRender in Master Page. The problem is one of my htmlcontrols on content page i change on the ...
0
votes
1answer
111 views

meta tags in .net framework 4.0 in pages base on master and content pages

where should i put meta tags in .net framework 4.0 in pages base on master and content pages? mean in two below purposes : 1 - for each content page separately 2 - for all pages in master page is ...
0
votes
2answers
354 views

ASP.NET Master Page Content Page's IDs all changed, breaking CSS based on original element IDs? Are you kidding me

ASP.NET Master Page Content Page's elements all seem to be having their ID's changed or prepended by the ASP.NET page renderer. This breaks all CSS styles based on the original element IDs. Is this ...
0
votes
2answers
752 views

using jquery on content page load in asp.net 4.0

im beginner in jquery, i need to horizontal accordion menu by using jquery, i found couple of code but i cant use them within master page and content page in asp.net 4.0. how can i define jquery ...
0
votes
0answers
95 views

MasterPages and ContentPlaceHolders in the wrong order

I'm developing an MVC2 web application, using Master pages to manage a centralised layout. I've got a Masterpage with 4 Content areas in a specific order Page Title Main Banner Sub Banner Page ...
0
votes
1answer
69 views

Events only firing on specific machines but not on others

I have been trying to solve this problem for several weeks now and it is getting really frustrating. Basically i have a simple project which includes one master page and one content page. the ...
0
votes
2answers
164 views

Content control not accessbile from content page?

My content page looks like this: <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Basket.aspx.cs" Inherits="Basket" Title="Untitled Page" %> ...