MVC :: How To Inherit Two Classes Using Page Directive

Aug 10, 2010

I have been trying to find a way to declare two classes using page directive, but it seems like mvc framework doesnt support it.

I have got :

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<ContactManager.Models.contact>>" %>

which shows the list of the contacts including edit delete and create option.

What I need to declare another model class which is FileRepository.cs for uploading files on the same page. In this case the page directive should be like:

2. <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<ContactManager.Models.FileDescription>>" %>

Is there any way I can incorporate both into one as the first is coming from the database.

View 6 Replies


Similar Messages:

Web Forms :: Get A List Of All Classes That Inherit From BasePage In The Web Application?

May 13, 2010

I need to get a list of all of these webforms.

As the subject reads, how can i accomplish this ? All my webforms inherits from a class called "BasePage". It can also suffice with only getting a list of all the webforms in the application, regardless of base class since i can check inheritance later in code.

Reason i'm asking is because i'm building my menu and i'm implementing security enforced user visibility based on what pages there are in the webbapplication, and what roles each page demands, and display these to the user in the menu.

Using sitemaps are insufficient, i need to provide much more info for all the pages i have on my system.

Using this technique i can query my "PageProvider" for like:

GetAllPagesVisibibleToUser(MembershipUser user)
DoesUserHaveAccessToPage(MembershipUser user, BasePage forPage)

I'm also planning on implementing this technique on WebUserControls.

View 1 Replies

Web Forms :: Can Interfaces Inherit Other Classes And Can Make Constructor Of Interfaces

Oct 20, 2012

Can interface inherit othe class or more than one class? Can we create constructor of the interfaces?

View 1 Replies

What Is A Page Directive

Oct 10, 2010

I'm studying up for a Microsoft Certification exam, and some of the wording for the 'content' in the examn confused me. In the MS exam website, under Developing Web Form Pages, it says in regard to the content on the exam...

This objective may include but is not limited to: page directives such as ViewState, request validation, event validation, MasterPageFile; ClientIDMode;

I was under the impression that a page directive referred to the @Page keyword, and the associated values defined in the @Page section were attributes/properties. But the wording of the exam content almost implies that the attributes/properties of the @Page keyword are directives.

View 2 Replies

Web Forms :: Tilde For Master Page In Page Directive Not Working?

Mar 13, 2010

I am receiving a Parser Error with all my pages in a particular folder:

Parser Error Message:

The file '/railroad/freightcars/covered_hopper/MasterFiles/Freightcars.master' does not exist.
Line 1: <%@ Page Title="Freight Car Photos - CP Covered hoppers - CoveredHopperPhotos.com" Language="C#"
MasterPageFile="~/MasterFiles/Freightcars.master" AutoEventWireup="true" CodeFile="cprail.aspx.cs" Inherits="railroad_freightcars_covered_hoppers_cprail" %>

It seems like the ~ is not resolving; none of my .aspx pages in this folder work. All my pages in several other folders work fine.

I had this problem with another folder when i first published pages to a folder named covered_hoppers. Since i couldn't figure out the problem, i renamed the folder to covered_hopper and re-published.. all worked fine for a couple of months until yesterday. Now i am having the same problem. No problems on my local copy; never had this error with any other folder in my site.

View 5 Replies

Specificying A Page Directive Attribute On A NHaml Page?

Apr 11, 2010

I am working on an MVC site using NHaml for the view engine.

I have a page that needs to submit HTML code as a form value and am getting the System.Web.HttpRequestValidationException thrown at me.

I want to specify the <%@ Page validateRequest="false" %> so that this page will allow this data to be submitted but am unsure on how to do this with NHaml generating the pages.

The editor I was using was TinyMCE and I found that it has an option for encoding the output, that way it doesn't trigger the anti-html validation.

[URL]

View 1 Replies

MasterType Directive Not Implied After Setting Page MasterPageFIle?

Jan 28, 2010

The docs for @MasterType have this example.

<%@ Page masterPageFile="~/MasterPage.master"%>
<%@ MasterType virtualPath="~/MasterPage.master"%>

Why is @MasterType even needed? Couldn't the compiler automatically take the same actions based solely on @Page masterPageFile? When would you not want to use both?

View 1 Replies

OutputCache Page Directive To Improve Performance Of The Site

May 14, 2010

I am having trouble with the performance of a web site... Some SQL queries are killing the server. But, as the title of this post mention, I looked at the OutputCache page directive to improve performance of the site. Although, I came across some questions regarding this directive:

1- If I have a web-user control that declares an OuputCache directive in a page that has one too, which one will "win"?

2- What's the best pratice regarding the duration ? I'd love to have a sliding window too.

View 2 Replies

Web Forms :: Expression Expected Error In Page Directive?

Feb 19, 2010

I get a error on this line

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="FormA.aspx.vb" Inherits="_Default" %>

It says expression expected

another error is :name bind is not declared

Both the errors point to column 1 line 1

View 2 Replies

UTF-8 Dont Display Correctly After Changing Culture In Page Directive

Dec 10, 2010

i designed an export to excel page that uses the following code

the data is displayed in grid view and the date format is displayed as M/d/yyyy

so i added the culture en-GB to page directive to display the date as d/M/yyyy

the date now displays correctly d/M/yyyy, and the utf-8 also display correctly in gridview.

however once i export to excel the utf-8 appears scrambled

when ever i remove the culture from page directives, names display correctly, however i face again the M/d/yyyy issue.

My question is: is there a way to display date as d/M/yyyy and at the same time reading correct utf-8

View 1 Replies

Set The Inherits Attribute Of An ASPX Page Directive To A Class In An Arbitrary Assembly?

Feb 24, 2011

Is it possible to set the Inherits attribute of an ASPX Page directive to a class in an arbitrary assembly?

I need to modify an ASP.NET (1.1) application for which the source code was lost. In a new assembly (foo2.dll) I've created a replacement code-behind class that derives from the original class in the site's code-behind assembly (foo.dll). It seems easy enough to set the Inherits attribute of the Page directive to the new class name, but when I do that the web server gives me Could not load type 'Foo2.checkout2'. I am referencing the new assembly in the <assemblies> section of Web.config.

I don't see anything in the documentation to indicate that this scenario is unsupported, but I'm not certain that it is, either.

Original

<%@ Page Inherits="Foo.checkout" language="c#" Codebehind="checkout.aspx.cs" AutoEventWireup="false" %>

New

<%@ Page Inherits="Foo2.checkout2" CodeFile="checkout2.aspx.cs" CodeFileBaseClass="Foo.checkout" language="c#" Codebehind="checkout.aspx.cs" AutoEventWireup="false" %>

View 1 Replies

Creating A Template Item From A Web Form And Auto Generating The Inherits Page Directive?

Jan 27, 2010

OK, so I'm trying to create a template item from a web form.

I have referenced this article: [URL] and it exports the template and installs it fine.

When you try and use the template item within a project though it leaves the inherits="_Default" in the page directive like shown below:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FormTemplateDev.aspx.cs" Inherits="_Default" %>

So it thinks all the new template items use the original form name pre-template generation. This is an issue in the code behind too as shown here:

public partial class _Default : System.Web.UI.Page

I have seen example of passing paramater strings through but havent managed to get anything to compile. I found something like below:

public partial class $safeitemname$ : System.Web.UI.Page

This was the link to the list of available template parameters i found:

Project Template Parameters

View 1 Replies

C# - How To Inherit From A Page

Feb 8, 2011

I created a page to be the base Page in my web application to add inside it some common functionality. but when I try to inhirite from it then VS gives me the following error:

The type or namespace name 'CentralPage' could not be found(are you missing a using directive or an assembly reference?)

Note: I just want code-behind functionality in the base page.

What should I do ?

View 2 Replies

Visual Studio :: Web Project Converted From 2005 To 2010 Gets Dynamic Compile Error On The @Page Directive?

Jan 12, 2011

As that title says my aspx page shows a compile error on the @Page directive that says "ASP.NET runtime error: Cannot load file or Assembly 'Microsoft.SqlServer.BatchParser' or one of it's dependencies". The project compiles with our error and it runs with no problem. The only real problem that this causes it that the intellisense for anything other than simple HTML is broken so I can't type asp:Controlname and have intellisense show me a the list of items or properties in a control. I get a green squiggly line under all the asp tags saying "Unrecognized tag prefix or device filter 'asp'". This project doesn't directly use SQL SMO but it does reference a project that does. However, I removed that reference and the problem still doesn't go away. I have installed on my development machine the full SQL client and for both SQL 2005 and 2008 (including the SDK) from the Developer editions of both versions. This was not a problem on VS2005 and the project compiles without error in VS2010 too.

View 1 Replies

Web Forms :: Inherit A Page Events To Another Page?

Dec 15, 2010

Is it possible to inherit a page events to another page

like inherit page Init to another page...

View 2 Replies

Is It Possible If Inherit Aspx Page From System.Web.Mvc.ViewPage

Apr 4, 2011

I am developing a website which will be having both asp.net pages and MVC pages in it, So I have BaseWebPage class which will be used for both asp.net pages and MVC Views. but My BaseWebPage class is inherited from System.Web.Mvc.ViewPage, So Will there be any code/ functionality break for normal asp.net pages, because System.Web.Mvc.ViewPage is overriding some of the Pagelife cycle methods.

View 1 Replies

Inherit Class From Page, Usercontrol, And Masterpage?

Oct 23, 2010

I have Page, MasterPage and UserControl in my project.

So I create basepage class and share some logic, then inherit from System.Web.UI.Page. My problem is I want use single basePage for any type of UI content.

View 1 Replies

Can Page Inherit Multiple Master Pages

Jun 2, 2010

Can a page inherit multiple master pages?(ASP.NET)

View 4 Replies

Web Forms :: How To Inherit A Class Within The Form/page In .net

Jan 20, 2011

I want to know, how to inherit a class within the form/page?

View 4 Replies

MVC :: Inherit A View From Normal Master Page

Apr 29, 2010

Can I Inherit a view of Asp.net mvc2 from normal asp.net master page

View 1 Replies

C# - Session Is Null When Inherit From System.Web.UI.Page?

Jun 16, 2010

I want to extend the System.Web.UI.Page-class with some extra stuff.
In the ctor I need the value of a session-variable.

The problem is that the Session-object is null...

public class ExtendedPage : System.Web.UI.Page {
protected foo;
public ExtendedPage() {
this.foo = (int)HttpContext.Current.Session["foo"]; // NullReferenceException
}
}

If I move the part with the session-object into the Load-Event everything works fine...

public class ExtendedPage : System.Web.UI.Page {
protected foo;
public ExtendedPage() {
this.Load += new EventHandler(ExtendedPage_Load);
}
void ExtendedPage_Load(object sender, EventArgs e) {
this.foo = (int)HttpContext.Current.Session["foo"];
}
}

Why is the Session-object null in the first case??

View 2 Replies

Must Inherit From Another Class Or Murst I Include This Code In Every Page?

Jul 30, 2010

this is my tipical page
as you can see, i have a connection property and a function who return if the program can connects to DB with any error

[Code]....

i want optimize my codei discovered that i must use connect() function in every page,i am thinking to creare a class who have connection property and connect() method and derive my page to it, is it a good idea?

View 7 Replies

Can Inherit A View Of Mvc2 From Normal Master Page

Apr 29, 2010

Can I Inherit a view in asp.net mvc2 from normal asp.net master page

View 2 Replies

Configuration :: Why "Web Deployment" Add Theme To Every Page Directive

Jan 27, 2010

I have problem when I use "Web Deployment" project to deploy web site by VS.NET 2005. Although, file .aspx does not contain theme in section page directive, web deployment add theme as same as value of Web.config automatically when deploy project.

View 3 Replies

Visual Studio :: What Is The Difference Between Designer Classes And T4 Template Generated Classes

Jan 11, 2010

I am new to LINQ. when we drag tables we get a dbml file and designer file.

For example DataClasses1.dbml and DataClasses1.designer.cs.

Once we have them then we can start using our LINQ Queries.

In my company project I do not see this designer files and instead there are .tt files which were used as templates to greate ABC.generated.cs files. Is this same as designer class?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved