C# - Can Two ASPX Pages Inherit The Same Code Behind Class

Sep 4, 2010

I'm just starting out learning ASP.NET. From what I understand, ASP.NET differs from old school ASP in that the logic code for a page exists in as separate file rather then being embedded in the ASP page. So when a user requests a page like ShoppingCart.aspx the server reads the directive at the top ...

<%@ Page Title="" Language="C#" MasterPageFile="~/Styles/Site.Master" AutoEventWireup="true"
CodeBehind="MyShoppingCart.aspx.cs" Inherits="TailspinSpyWorks.MyShoppingCart" %>

This tells the server what file and what class in the file is associated with the page. The code behind class also has member variables that correspond to each control on the page, and provide a way for code in the code behind file to manipulate the controls.

First, do I understand this correctly?

Second, could a site be setup with two separate ASPX pages with identically named controls, which both had a directive pointing to the same file and class? Would you even want to do this? Both pages could have the same functionality but a different layout. I was thinking this could be a way to create separate "desktop" and "mobile" versions of a page with out duplicating content in the code behind files.

I guess ultimately what I'm wondering, is if there a way to define an abstract page? Say create an abstract page definition that says a page must have controls "cart_list", "total_lbl", but then be able to have multiple pages that inherit from this abstract page?

View 5 Replies


Similar Messages:

Web Forms :: Master Pages - All My Pages Inherit From The Base Page Class

Jun 21, 2010

Currently I'm doing common functionality required throughout my site inside of my masterpage. What I want to do is move this functionality to a BaseClass so All my pages inherit from the Base Class. However, I'm not sure how to set this up interms of c# code with regards to Using a Base Class and then having a masterpage applied to my aspx pages that i create.

View 5 Replies

Can A Aspx Page Have More Than One Aspx.cs Class To Inherit

Nov 30, 2010

i want to know, can one aspx page have two or more code behind page?

like if i have page collge.aspx, by default it will inherit college.aspx.cs, i want to know can't it inherit more then one aspx.cs. If not then why?

View 3 Replies

Code Reusability / Put The Code In One Class And Want To Inherit Same Code In Each Page?

Apr 12, 2010

Following is the code to insert userName from session and PageName into table to keep record that how many times a user does hit a particular page.

To avoid repitition of code I want to put the code in one class and want to inherit same code in each page.

How to get this task? Please do share with me? Here is the OK code:

[Code]....

View 17 Replies

Web Forms :: Change Master Pages To Inherit With Home.aspx Using Radio Button ?

Aug 2, 2010

I have 3 master pages with names master1.master, master2.master and master3.master and a webpage named as home.aspx how can i change my master pages to inherit with home.aspx using radio button linst.

View 3 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

List All Classes In Application (Including Class In App_Code And Partial Class(aspx Pages And Asmx User Controls)?

Nov 15, 2010

Is there any way to list all the class in my ASP.Net application(Including class in App_Code and Partial Class(aspx pages and asmx user controls)

View 3 Replies

Changing The View (.aspx) From The Code-behind (.aspx.cs) Class?

Nov 1, 2010

I have a 'classic' ASP.NET app (.NET 3.5) with a pretty standard runat="server" style form with server-side controls and an 'Execute' asp:button. In the code-behind, the executeButton_click handler processes some of the other controls, runs a report, and drops the result into an asp:label. So the effect of pressing the Execute button is that the entire page reloads with the report inserted into the label.

I need to change this so that when the Execute button is pressed, the report pops up in a new window with a different layout (ie without the controls and form). If I was doing this in an MVC framework I would just change the view template in the 'execute' action, so the analogue for ASP.NET would be change the code in front, ie the .aspx file that gets used, from the code-behind class.

Is this possible? I know the link between the .aspx and the .aspx.cs isn't extremely tight as it is possible to reuse a code-behind class in multiple .aspx files. So can I set the .aspx file to render from the code-behind?

View 2 Replies

How To Define Properties And Methods Of Class That Inherit Stream Class

May 15, 2010

here is the code, where i am confused what to write in all the properties and functions of the base class stream?

I want to inherit abstract class Stream, but confused about what to write?

[Code]....

I could'nt understand how to define these Properties,Sub and Functions. How i start?

View 20 Replies

Web Services - Can A Webservice Class Inherit Page Class?

Jan 6, 2011

i have an application consisting of two asp.net projects. And i have have a BasePage which inherits System.Web.UI.Page and have the class some core logic which i require in all of my pages(Implemented in BasePage.cs). So all my pages inherit this BasePage.cs . Now can an Webservice inherit the same class apart from the normal webservice class System.Web.Services.WebService

View 4 Replies

Public Fields With Same Name In Class That Inherit Another Class ISSUE?

May 28, 2010

have a look at the code:

[Code]....

Here When i create object of Class InheritingOneConstruntor value of public field var1 is zero at last. But when i checked step by step through debugging i found that when base class's New() constructor is called, for a moment all var1's value becomes 89. All var1 means at all locations where var1 is used i.e., in base class and in child class.But the moment control exits New() constructor of base class, var1's value again becomes zero. Why it happend ?

View 7 Replies

C# - How To Inherit A Page Class From A Class Library

Mar 16, 2011

I might be asking a dumb question, but I have a client for whom I need to build many websites (10+) (asp.net 3.5) which will all the pages on each site will have the same codebehind, but the sites will launching in different regions and whilst following the same template, will have different content.I have built and launched site 1, and sites 2, 3 & 4 is nearly live, but it occurs to me that as all the sites are basically the same, the code is going to get more complicated to update as it will be duplicated, so if I need to do a bug fix on one site, I'll need to do the fix on all websites (and this is going to get complicated.)

I was wondering if it possible to somehow create a class library of all the current aspx.cs files, reference this dll in each website and then inherit these classes into the .aspx.cs files. So default.aspx in each site would still have a CodeFile of "Default.aspx.cs", but Default.aspx.cs would inherit the corresponing class from the dll:

using WebPagesClass;
public partial class _Default : WebPagesClass._Default
{ }

The reason for doing it like this is that if I need to change any code on a specific website (for minor changes in languages for instance), I can override the page functions and change the parts required. For all other pages which have not cha, I can just copy from a single website.Is this vaguely possible? If not anyone one got any killer suggestions of how to manage so many websites from a single codebase?

View 2 Replies

C# - How To Make A Code Run On All Aspx Pages

Sep 3, 2010

I need to create a code that reads the QueryString and set a value on the Session and on the end of the page I need to clear the Session.

How can I make a code like this to run on all .aspx pages?

View 6 Replies

C# - Code Blocks In Regular 4.0 Aspx Pages (not MVC)?

Mar 24, 2011

Is it possible to do something like this in regular ASP.NET (or something similar):

<ul>
<% foreach (var item in Model) { %>
<li id="<%: item.Id %>">
blah blah
</li>
<% } %>
</ul>

I need to do a gird, but I want to control how the html table is output.

View 3 Replies

Getting The Errors For Code In Unopened .aspx Pages?

May 12, 2010

Is there a way to check for errors in unopened *.ASPX pages. For example, if you change the name of a function Visual Studio will catch the error on the page and list it in the "Error List" only if the page is opened and being validated?

How do i find out about the following without running the page through the webserver or opening the page to be validated in VS?

<script runat="server">
Public Sub MyFunciton()
Undefined_FUNCTION()
End Sub
</script>

View 2 Replies

Web Forms :: How To Displaying Source Code On Aspx Pages

Jul 11, 2010

I need to display c#, vb.net or any source code on a web page. The source code that will be displayed should indented, colored as we see in any IDE. I am not sure how would i achieve this. Is there any in-built control available in asp.net that i can use to display the code or can someone tell me how can i achieve this.

View 3 Replies

Web Forms :: Aspx Master Pages And Linking C# Code Behind?

Jan 29, 2011

[Code]....

Source File: c:UsersfrankDocumentshealingHeartsWShhhhMaster.cs Line: 3 Show Detailed Compiler Output

View 2 Replies

Want To Inherit Bill Class?

Sep 2, 2010

I want to inherit more then one class is there any method ?For instance in login.aspx page:

<%@ page language="c#" codefile="nishant.aspx.cs" autowireup="true" inherit="nishant"%>

now code behind file

nishant.aspx.cs:

class nishant
{
//code...
}

class bill
{
//code.....
}

now i want to inherit bill class then how i will ?

View 5 Replies

Inherit Data From One Class To Another

Feb 10, 2011

How does we inherit data from one class to another class using Inheritance in practically using c# .net show me some examples. My doubt is we create one method in class and we will call that method when ever it is neccessary in same class , But if we want to call the method and use that properties in another method in another class what is the process?

View 4 Replies

Inherit Same Method For 2 Different Class?

Dec 19, 2010

How to simplify this, 2 method in class are identical. First class.

Public Class Gui
Inherits System.Web.UI.Page
Public Sub CreateStyleLink(ByVal StyleArray() As String)
Dim StrStyleLink As String

[Code]....

View 3 Replies

Web Forms :: Inherit Multiple Master Pages?

May 14, 2010

Is there a way to inherit multiple Master pages? One for the heading, the next one for the menu section, and one for the footer?

View 2 Replies

Can Page Inherit Multiple Master Pages

Jun 2, 2010

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

View 4 Replies

Web Forms :: Why Admin Can't Inherit Master Pages

Jun 1, 2010

ok this is that My Master Page is out side the folder but i Have Folder with Name Admin which contain Admin.aspx but it cannot all the images and stylesheet

see how it looks

[IMG]http://i49.tinypic.com/w2hqg9.jpg[/IMG]

code of page

[Code]....

but this prbolem don't come when i take the same page outside of Folder

i am thinking there is soultion to it is that again making a copy of all IMages and Style sheet and place in admin folder which gonna solve my prbolem but is that a right solution...?

View 13 Replies

Web Forms :: Create Several Pages That Inherit From Main

Jan 28, 2011

I am writing a program in ASP.Net. I need to use page inheritance. I will have a Main Page called "Main" for example. In this form I will have several controls (Any type of control, can be datagrid or any other control). I want to create several other pages that will inherit from this main Page. When I inherit, I want the controls on the main page to appear on the inherited pages. I know that some of you will tell me use a master page, but this is not what I need. I need inheritance. (I suceeded in doing inheritance, but when I do so, the controls do not appear)

View 3 Replies

C# - Add Google Adword Conversion Code Script To Certain Aspx Pages In Website?

Feb 22, 2011

I'm trying to add Google Adword conversion code script to certain aspx pages in our website but I'm running into an issue with the site using master pages. The Google instruction said to place the code before the body tag but with master pages being used the code will be on all the pages using the master page. I would like setup it up where certain pages use individual conversion codes with others not using anything. Any suggestions or examples would be appreciated. Also, I'm using C#.

View 1 Replies







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