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

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; but if…
Adam Right
  • 955
  • 6
  • 17
  • 35
0
votes
1 answer

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 LoadComplete event server side of the content page. I…
powedekw
  • 1
  • 1
0
votes
1 answer

The popup calendar does not look right

I’m trying to implement the AjaxControlToolkit (19.1.0) CalendarExtension control in a Webforms project. VS 2017. I have the toolkit referenced in a Master page, along with scriptmanager. My content page has scriptmanagerproxy reference. The…
0
votes
1 answer

How to inherit from a Xamarin Forms base class Page with views in it?

This is driving me nuts. I'm trying to inherit from a base SettingsPage I made, and it's not working, and I can't find a single example anywhere of how to do it. All the examples I've found involve inheriting viewmodels, and other non-visual…
donaldp
  • 220
  • 1
  • 3
  • 15
0
votes
1 answer

Xaml Button too small

I am writing a mobile app in Visual Studio 2019 for Mac. I have a xaml ContentPage. I have some labels and a ListView. Here is my xaml:
user856232
  • 1,073
  • 2
  • 14
  • 40
0
votes
1 answer

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 there any property in master or content pages for…
SilverLight
  • 19,668
  • 65
  • 192
  • 300
0
votes
2 answers

Need help to improve the appearance on Xamarin iOS tab

I want to improve the size and background of my content page on ios, var About = new ContentPage() { Title = "About" }; var layout = new StackLayout(); var line1 = new Label() { Text = viewModel.Member.Line1, FontSize = 16, HorizontalTextAlignment =…
0
votes
1 answer

Make background image responsive in xamarin forms uwp app

How to adjust the background image of content page when the screen is resized in xamarin forms uwp app. I have added the background image for Content page as below.But when I am resizing the size of the screen the image is shrinking.How can i avoid…
Mars
  • 269
  • 1
  • 3
  • 22
0
votes
1 answer

enum declared within master page can't access from the content page

Hi I have declared an enum within the master page as public enum AlertType { success = 1, danger, warning, info, primary, secondary, light, dark …
Richu R
  • 71
  • 3
  • 12
0
votes
2 answers

Xamarin base ContentPage with loading (or common ContentViews)

how can I create a "base" ContentPage that contains, for sample, a busy indicator, and make this Page the base for each other pages inside my application? I have tried to do in this way, but the busy indicator isn't showed. Base Page:
Hikari
  • 589
  • 7
  • 29
0
votes
0 answers

why doesn't jautocalc.js work on asp.net content page?

I have been scouring stackoverflow for how to use jautocalc.js on a content page of a vb.net project. on a regular aspx page it works fine, but once i reference the master page and implement the content controls the form does not autocalculate…
0
votes
1 answer

ASP Master and Content Page

I am using Master and Content Pages, now I have a situation that I dont want to use the css of Master page on Content Page. There are alots of classes and css files so overriding them is not possible I just have option to not include them in content…
ccaring
  • 33
  • 3
0
votes
0 answers

How to force a Xamarin Forms label or view to redraw to prevent duplicate label

Update 2: I have determined that this is caused by the Xamarin Forms Extended Card View (XfxCardView) package I am using. Changing out the Card View for a Frame stops the issue (pic 1).
Sev
  • 883
  • 1
  • 14
  • 34
0
votes
0 answers

How to open Browser_Action from content.js? Is it even possible?

I am working on a chrome extension that allows users to open the browser_action by pressing a keystroke that THEY have assigned from the options-page. I would like to use document.onkeyup = function(){ Chrome.runtime.openPopup(); }; or something…
0
votes
2 answers

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 method in asp.net masterpage and content page....here…
serim urhan
  • 139
  • 2
  • 10
  • 21
1 2 3
8 9