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


Similar Messages:

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

Security :: Only Allow Logged In Users To View Default.aspx, And About.aspx?

Nov 28, 2010

First of all, thank you for the attention.

I am having some trouble, I am very new to asp.net, and the last problem I had, I spent about 59 hours trying to solve, Now I have a new one !

:D well, I guess this is part of the learning process...

Well, in Visual Studio 2010, I clicked New Website. @ C# language, ... The template it gives is pretty nice, it creates a database MDF file, and a login/register setup ready to go !...

You guys can see it live AT CLICK HERE ...

Everything is working, well at least here at the local machine...

There are 2 pages in there, Default.aspX, and About.aspx ... I want to allow ONLY logged in users to view those 2 pages... I tryed a few things, added my account to a role called ADMIN,

In the web.cong I changed Allow"*" to allow"ADMIN" ... still didn't work.. Also, I was trying to avoid using roles for now, and I was trying to find a way to do this for individual pages in the same directory as well... If possible with out touching the web.config file...

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

Web Forms :: Access Code In App_code From Aspx (not Aspx.cs)

Jul 2, 2010

I put common code in the app_code directory. I access classes in the code all the time from aspx.cs files by "using" the name space from the C# file in app_code and then referencing the class. Now I want to access a class from an app_code file a aspx file. How do I do this?

View 8 Replies

Display Aspx And Aspx.cs Code Onto A Page Without The Browser?

May 29, 2010

i have to give the user the option to upload his own aspx and aspx.cs files on to the server, adjust the hyperlink to point to a page which would do the following display the aspx and aspx.cs files code onto the page without actually rendering the code the browser should not understand anything, and while reading the files to display them the method be such that nothing is processed on the server regarding the code within the files to prevent from unnecessary problems many user would try to cause.

i have tried many ways of displaying it but it ends up on displaying the actual comments instead of the code. how to achieve the above. note main concentration is on asp.net and c# using vs08, so j script and ready-made tools be avoided if feasible

View 2 Replies

C# - Referencing One Aspx.cs Class In Another Aspx.cs Class?

Aug 29, 2010

Does anyone know how to reuse the code from one aspx.cs class in another aspx page?

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

Web Forms :: How To Load Files (file1.aspx And File1.aspx.vb) In A Container On Index.aspx

Jul 13, 2010

I want to know how can I load my files (file1.aspx and file1.aspx.vb) in a container on my index.aspx. My index should have my menu and my container. My problem is that i don't know how do that... options wich i tried:

Iframes: yes work it... but in html 5 iframe will dissapear...

MasterPage: isn't the solution because this refresh all index page.

Ajax: yes.. charge my File1.aspx in the container but i can't call the functions of File1.aspx.vb...

View 2 Replies

C# - Changing Postback URL To Hide Default.aspx?

Jan 14, 2010

I am attempting to hide the document name from the user by using a folder with appending querystring in the following format:

http://localhost:53779/s/?x=FF2F60195B21487FA19A8EE7767A206C

When I post back the page, it directs it to the physical page:

http://localhost:53779/s/default.aspx?x=FF2F60195B21487FA19A8EE7767A206C

It it possible to motify the postback address so I can omit the default.aspx from the client browser?

View 2 Replies

Changing Folder Path To Image So That It Can Be Used In A Aspx Page?

Jan 17, 2010

I have the following filepath

D:\_My_Project\Projects\My\MyWebApplication\UserImages\10b1abd6-0d3c-4fb0-928a-60cbf9b7a5d7\Images\

and I was wondering if there are any build in methods in the .net framework that would give me something like this

~/UserImages/10b1abd6-0d3c-4fb0-928a-60cbf9b7a5d7/Images/

View 1 Replies

Security :: Changing The Way This Aspx Login File Works?

Mar 16, 2010

I have a simple login screen that now has to receive its parameters from another web site. I am not sure what we have to do. The other web site, will get the user id and password. the person there is asking me, does he just redirect user tohttp://reports.ourwebsite.com:90/login.aspx?username=Bill&password=testthis is the codes: First is Login.aspx<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="Reports.Login" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> xmlns="http://www.w3.org/1999/xhtml"

>
<head runat="server">
<title>Untitled Page</title>

[code]...

View 4 Replies

Dynamically Changing A Table Cell Background Color In Aspx Vb.net?

Oct 25, 2010

I have the following table row on my .aspx page.

[Code]....

I can change the color of the return value based on conditional statements but cannot figure out the correct syntax to change the table cell back ground. My attempt is commented out.

How do I correctly declare the table cell? Findcontrol must not be the correct way.

View 1 Replies

Changing Response Type In Aspx Page Breaks In IIS7?

Mar 3, 2010

I have a custom implementation of Application_PreRequestHandlerExecute which is applying a deflate/gzip filter to the response. However, on IIS7, this is failing on my "script generator" pages. These aspx pages take in Query String values and return a custom bit of script, changing the response type to text/javascript. I think it is failing because of the way iis7 uses mime types, but I'm unsure how to fix it short of turning all compressio off.

View 1 Replies

Web Forms :: Changing User Control Properties In Aspx Pages?

Feb 25, 2011

I have a simple user control(.ascx) with a asp label inside of it. Using the codebehind(C#) from a aspx page, how can I change the text of that label? I have tried using public classes in my user control and a few other things that I could think of off the top of my head. Can somebody give me a quick example of how this would be done?

View 4 Replies

MVC :: How To Use The Same Partial View / .ascx Twice In The Same View / .aspx

Aug 4, 2010

I have a strongly typed partial view named "Address". This partial view contains 'input' fields associated to an Address model class. I want to render it twice in the same view because the user must input the Home address and the Business address.

I have problem with client validation because of the ID of the 'input' rendered is not unique.

Is there a way to set a kind of scope so the id of the 'input' for each partial view has a unique ID that can be recognized by the modelBinder , so that my page post back can correctly organize data into respective address type?

View 3 Replies

Access Class From Within The Aspx Page

Nov 22, 2010

I am trying to do something such as:

<%= Class1.GetName %>

in my ASPX page, but my class1.vb can't work like this, I have to declare it first in the aspx page, how can I make my Class1.vb file be shared among the whole website?

View 1 Replies

How To Pass A String From .aspx To A Class

Feb 24, 2010

I need to pass a string from my .aspx page to my .VB class.

i need to capture (device_category; accept_headers : user_agent) and pass the values to my class, i tryed to captur the values on the clas itself but i got an error(valuse are not member of this class..)

How can i have a string accessable to my class?

View 10 Replies

Web Forms :: Access Aspx Class Properties From Outside?

Aug 19, 2010

I have added a static string variable inside a web page with it's class named VersionBase. The class is public, the variable is public, why can't I simply do VersionBase.MyString from anywhere inside the project like I can do with any other class?

View 13 Replies

DataSource Controls :: Binding An ObjectDataSource To A Property In Aspx Code, Not Code-behind

Dec 3, 2010

I want to bind an ObjectDataSource to a property in my asp page and I want to do it in the page's aspx code, not in code-behind. I've already done it in code-behind, as follows:

[Code]....

I'd prefer to get rid of the ugly code-behind and just do this in mark-up. Something like
[Code]....

This gives me a run-time error: Cannot create an object of type 'System.Object' from its string representation 'SelectedBook' for the 'DataSource' property.Is there a way of doing this declaratively and not in code-behind? Further, what if what I want is to actually use a child property of the property in question? For example, if my Book object has a ReaderComments collection, can I databind to it decaratively in the aspx mark-up?

View 1 Replies

Visual Studio :: Accessing Controls Of .aspx File In .aspx.cs Withtout Any Declaration?

Feb 10, 2010

I am able to access the controls of ".aspx" file in ".aspx.cs" directly without any declaration in ".aspx.cs" or in designer.cs. How is this possible? This is happeing only if I open website as using File System.

Create a new ASP.NET web site application with Visual Studio 2008. So following three files will be created automatically

[code]...

How btnSave is being recognized by .cs file without defining it anywhere as an object of System.Web.UI.WebControls.Button?

View 3 Replies

Web Forms :: Pass The Selected Value Of A Dropdown List From Page1.aspx To Page2.aspx?

Mar 11, 2010

I have 2 pages Page1 has a dropdownlist, page2 has this on pageload:

View 5 Replies

Forms Data Controls :: How To Display Text From Default.aspx In Default2.aspx

Oct 18, 2010

How to display text in another Web form

In Default.aspx I have a GridView. How to Default2.aspx, show data from Default.aspx?

I have a textbox on Default2.aspx.

In Default.aspx I have a GridView.

Data from the GridView I want to show the textbox (Default2.aspx).

View 2 Replies

JQuery - ASPX Security Libraries / Looking For A Combo To Send Data From JavaScrpit To ASPX?

Jun 6, 2010

i would like to know if there's a combo like jCryption (jCryption) - PHP but for jQuery - ASPX.I mean, I have been searching for a combo to send data both ways (Client-server, server-client) with jQuery to ASPX. The best I found was jCryption that sends data from JavaScrpit to PHP. I need a combo to send data from JavaScrpit to ASPX.

PD: Please don't tell me to use HTTPS, it's not enough to ensure the data communication on a client - server application.

View 1 Replies

PageLoad Event Is Not Fired When An Aspx Is Opened Through Javascript Of Another Aspx Page

Jan 25, 2011

I have an aspx application with 2 aspx pages. Second aspx page will get opened on click of a button in first aspx page using JavaScript. The problem is, when the second aspx page is getting opened, its Page_load event is not firing. Only when I refresh the second page, page_load event of second aspx page is fired. what might be the problem and what is to be done to fire the page_load event.

View 1 Replies







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