Questions tagged [content-pages]

A content-page is an asp.net page that utilizes inheritance from a master page. Useful for template page development

In Web site development with ASP.NET, the Content Page is a page that is associated to a Master Page. A Content Page will contain only markup and controls inside Content controls and it cannot have any top-level content of its own. Any Content Page can use controls that specifically override content placeholder sections in the Master Page.

What is a Content Page - ASP.Net

Master and Content Page Tutorial

123 questions
0
votes
1 answer

Passing int and string values from masterpage to content page

I have a radio list in my master page and they fire an event when I select one of them. Now this event isn't not controlled by my master page instead it is controlled by my content page. My question is, is it possible to pass int/Strings from the…
0
votes
1 answer

How to Name Content Pages in Visual Studio 2013

So I am having some difficulty with Visual Studio. My goal is to set up a master page and have content pages to make sure that the layout is consistent throughout the site. The Problem: When I run my file I have this error come up: Steps I've…
Cakewok
  • 15
  • 5
0
votes
2 answers

master page control on content page

I have got the following code on master page: ............... ............ .............
0
votes
1 answer

Can we use HttpHandler and HttpModule to change the content page div from the Master page?

In my application i create a navigation menu dynamically. When I click on the anchor tags that refer to various content page I want to capture the anchor tags' text and display it in a div in the content page. How can i possibly achieve this? Can…
Jackson Lopes
  • 215
  • 1
  • 5
  • 20
0
votes
3 answers

Get element of nested master page from content page

I have got a master page, a nested master page and a content page: Master(Site.master):
Za7pi
  • 1,338
  • 7
  • 22
  • 33
0
votes
2 answers

How can I make my content page manipulate controls on the master page?

My content pages allow me to manipulate data and so, their code includes error handling blocks. What I'd like to do is set the text value for several labels in a modal window on the master page in order to display the error message to the user: