CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > migration_to_asp.net.migrating_from_asp_to_asp.net Tags:
Item Type: NewsGroup Date Entered: 10/29/2003 9:08:24 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 7 Views: 14 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
8 Items, 1 Pages 1 |< << Go >> >|
JimATL
Asp.Net User
Is it possible to call ASPX from ASP ?10/29/2003 9:08:24 PM

0/0

Have a big production app I'd like to slowly migrate.
Anyway to call aspx from the current asp ??

Thanks.
Atrax
Asp.Net User
Re: Is it possible to call ASPX from ASP ?10/30/2003 6:20:35 AM

0/0

depends what you mean by 'call'

you can run ASP and ASPX pages side by side on the same server, though sessions need to be handled by a third-party helper, such as SessionBridge (sessionbridge.com )


RTFM - straight talk for web developers. Unmoderated, uncensored, occasionally unreadable

Jason Brown - MVP, IIS
DaveL
Asp.Net User
Re: Is it possible to call ASPX from ASP ?10/30/2003 5:13:49 PM

0/0

I'm guessing what he means is the same thing I'm looking for. I want an ASP page to call an ASPX page.

In my case I'm storing something in the ASP.NET Session object. I want the ASP page to pass in a key and the ASPX page to basically "return" a true or false indicating whether it's in the Session or not.

Thanks for any help you can offer.
Atrax
Asp.Net User
Re: Is it possible to call ASPX from ASP ?10/31/2003 3:43:25 AM

0/0

> I'm guessing what he means is the same thing I'm looking for. I want an ASP page to call an ASPX page.

Like I said, depends what you mean by 'call' - redirect to it? include it? grab it over HTTP? Open it as a file? from what I can make out, a simple HTTP call might be the way for you to go, or something like SessionBrodge, obviating the need to 'call' the page at all.
RTFM - straight talk for web developers. Unmoderated, uncensored, occasionally unreadable

Jason Brown - MVP, IIS
DaveL
Asp.Net User
Re: Is it possible to call ASPX from ASP ?10/31/2003 12:45:00 PM

0/0

The means aren't all that important. The result I'm looking for is a simple, preferrably non-third-party means to return a value from ASP.NET to ASP.

The simple HTTP call "sounds" like it. I'm just not sure how to implement it. In particular, how to get the true or false result back.
Atrax
Asp.Net User
Re: Is it possible to call ASPX from ASP ?11/3/2003 1:00:33 AM

0/0

well, you get the response back by writing the return value to the Response object - simple.

then you request it with an HTTPRequest, and read th response body. if the response body reads "true"... well I'm sure you know what that means.

bit of a hack though. SessionBridge would be a better way I reckon. Why do you actually NEED to mix ASP and ASP.NET though?
RTFM - straight talk for web developers. Unmoderated, uncensored, occasionally unreadable

Jason Brown - MVP, IIS
DaveL
Asp.Net User
Re: Is it possible to call ASPX from ASP ?11/3/2003 4:19:42 PM

0/0

HTTPRequest is a .NET type, isn't it? Sorry, for my ignorance on this, maybe it's because I haven't been dealing with straight ASP for quite a while now. I was thinking of using an XMLHttpRequest COM object and I guess that would do too.

To tell you the truth I haven't looked into any 3rd-party session bridges, do they handle the web farm scenario limitations of ASP? Even so, I'm still disinclined to use them. I'd rather not bring in another piece to our puzzle for a relatively small need.

We've got an app that is about 90% ASP.NET but there are a few core pages that have quite a bit of logic embedded and they were coded with a hodgepodge of ASP, XML/XSL, include files etc.

Anyway, the long and short of it is, we haven't had the time in any of our projects to re-write the thing in .NET and it's still got some dependencies on some COM+ objects which we'd like to break. We could do reverse interop, but we were hoping we'd have a really simple way to avoid making that COM call. The data/functionality we're getting out of the COM object is now available in the ASP.NET session.

Thanks for your patience and help.
safiaazam
Asp.Net User
Re: Is it possible to call ASPX from ASP ?12/11/2003 3:47:30 PM

0/0

I need help on the same topic. I have searched and searched for information but I have had no luck.

Please can someone provide any details about migrating aspx files created in Web Matrix into Visual Studio.net

Thank you
8 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Professional ASP.NET 2.0 Authors: Bill Evjen, Scott Hanselman, Farhan Muhammad, Srinivasa Sivakumar, Devin Rader, Pages: 1253, Published: 2005
Complete Flash Remoting MX Authors: Joey Lott, Pages: 596, Published: 2003
ASP.NET 2.0 Website Programming: Problem-design-solution Authors: Marco Bellinaso, Pages: 576, Published: 2006
IIS 6: The Complete Reference Authors: Hethe Henrickson, Scott Hofmann, Pages: 720, Published: 2003
Professional ASP.NET 2.0 Security, Membership, and Role Management Authors: Stefan Schackow, Pages: 611, Published: 2006
Beginning ASP.NET 2.0 with C# Authors: Chris Hart, John Kauffman, David Sussman, Chris Ullman, Pages: 735, Published: 2006
ASP.NET 2.0 Instant Results Authors: Imar Spaanjaars, Paul Wilton, Shawn Livermore, Pages: 456, Published: 2006
Programming ASP.NET: Building Web Applications and Services with ASP.NET 2.0 Authors: Jesse Liberty, Dan Hurwitz, Pages: 930, Published: 2005
Understanding .NET: A Tutorial and Analysis Authors: David Chappell, Pages: 348, Published: 2002

Web:
Is it possible to call ASPX from ASP ? - ASP.NET Forums I want an ASP page to call an ASPX page. Like I said, depends what you mean by ' call' - redirect to it? include it? grab it over HTTP? ...
Is it possible to call ASPX from ASP ? - ASP.NET Forums Is it possible to call ASPX from ASP ? Last post 12-11-2003 11:01 AM by safiaazam. 7 replies. Sort Posts:. Oldest to newest, Newest to oldest ...
call a public method in aspx.cs file from another web page - .NET ASP I have an web page (page1.aspx) that has a method in the code behind that I want to call from another page. Is this possible to do? ...
TheMSsForum.com >> Asp >> Button to call another Aspx page - The ... (using asp.net 2.0, vb.net 2005) Tag: Button to call another Aspx page Tag: .... Naturally I'd like to change as little code as possible since I'll be ...
Can I Server.Transfer from .aspx to .asp page? Transfer from .aspx to .asp page? Hi Right now, when i call : Server. ... / SessionBridgeTest/Default.asp. > Is it possible at all to do so, ...
Server.Transfer - Call from asp to aspx? - IIS.net Re: Server.Transfer - Call from asp to aspx? Reply Contact ... Re: Server. Transfer - Call from asp to aspx? Reply Contact ...
Including .aspx in .asp pages - Active Server Pages - Forums at ... Including .aspx in .asp pages Posted by Finnster on 19 Jun 2006 at 7:32 AM ... ' finally, call CreateDoc to merge the documents together ...
Open Notepad In Java Script Call Notepad From Aspx .NET ASP Windows Jan 16, 2007 ... open notepad in java script call notepad from aspx net asp windows Windows Hosting.
Calling ASP from ASPX page error stating that it occurred dring the call to a child page. Any tips on co-existing with ASP or converting ASP to ASPX please. ...
CodeProject: Member Function Pointers and the Fastest Possible C++ ... They use a horrible hack, putting all the possible member function pointers .... But Afunc needs a this pointer that points to C::A (which I'll call Athis ) ...

Videos:
The Call of Ktulu music video This is a music video of Metallica's The Call of Ktulu. It's not the whole thing though. It's my first vid so plz comment. Here are the credits- http...
Effective Cold Calling-*Skyrocket* Sales NOW! http://www.showmefreedom.info Eric Binnion (940) 228-4613 http://www.myspace.com/texasmillionaire Cold Calling Tips For Successful Cold Calls (effe...
Save Darfur UNICEF http://www.unicefusa.org/site/pp.asp?c=duLRI8O0H&b=50755 STOP GENOCIDE NOW - CALL TO ACTION! http://stopgenocidenow.org/iact2/action.php CHR...
Logitech G5 Review This is the Logitech G5 mouse :] Tiger's mouse http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=3092938&CatId=2390 Newegg...
Has Carbon Copy Pro & Jay Kubassek Mislead Us?? http://www.showmefreedom.info/training carbon copy pro marketing- do you know how to market carbon copy pro and be really successful? Did you think c...
Rush Limbaugh Won't Answer Question About Iraq War Folks, rarely does a caller who has opposing views get through Rush's expert call screeners. Rush Limbaugh wouldn't answer a callers question about ...
(Nikken Scam) **FORGET THIS SCAM** Learn The *REAL SECRETS* To Success!! http://www.CreatorstoWealth.com Charlie Deleon Guerrero Nikken Scam (Nikken Scam) "Nikken Scam" NikkenScam at http://www.CreatorstoWealth.com Skype m...
You Tube Gathering - Boston *PLESE READ THIS BEFORE ASKING ANY QUESTIONS!!!!* I know, I know I don't live in Boston, but this is the closest gathering from NY(since we are not ...
(Carbon Copy Pro Reviewed) Can You Make The Cut?!? http://www.showmefreedom.info Eric Binnion (940) 228-4613 http://www.showmefreedom.info carbon copy pro reviewed carbon copy pro reviewed DO NOT J...
Rush Limbaugh - A Concentrated Pile Of Human Waste Folks, Rush Limbaugh likes to tell us he is the "great truth detector." Rush also claims to be an example of patriotism who exhibits a high degree of...




Search This Site:










where has the dll gone in vs2005?

traditional authentication without database

what is ssl

looping through treeview using javascript

information in web.config file is accesible at file level.

using user data across pages and sessions

parser error - line 1: <?xml version="1.0" encoding="utf-8" ?>

inamingcontainer and client side script question

ttt/dnn core forum emoticons smiley and gallery integration. help

new menu control and highlighting which area of the site you are in.

want to load .aspx page within tabs from an .ascx module on one of my tabs

logout

australian dnn hosts

registration page.

3.1 web.config - <trust level="full"> required, help...

login page works in .net app server, not real server

user login module

changepassword control

where is dnn2.0.3?

blogging module? or event by date..

using masterpage and subfolders

mystery of the disappearing dll's

expand treenode .. pls help!

dnn 3.08, error adding new page

ajax control toolkit problem

how to: combine sitemap with dynamic flash menu

createuserwizard control

different set of masterpages for different themes

c# treeview issues

buttons in createuserwizard

 
All Times Are GMT