ASP and ASP.net

J

Jay Villa

I have an existing application in asp. I need to add new functionality can I
do using ASP.net ?.
Please advice.

-Jay
 
C

Curt_C [MVP]

Jay said:
I have an existing application in asp. I need to add new functionality can I
do using ASP.net ?.
Please advice.

-Jay
you cant really mix the two nicely. They are different sessions, etc.
You can still pass via QueryString or DB though. In general though it's
best to not mix the two, it's too easy to lose your info/data/sessions/etc.
 
B

Bob Barrows [MVP]

Jay said:
I have an existing application in asp. I need to add new
functionality can I do using ASP.net ?.
Please advice.
Sure, after converting it to an asp.net application.
Bob Barrows
 
J

Jay Villa

Actually I dont want to convert entire existing application to ASP.NET. Any
new functionality I want to do in ASP.NET.
 
D

dw

You can do individual pages in ASP.NET, but you can't have ASP and ASP.NET
on the same page. As Curt_C said, you can't share session variables, but can
pass query strings and database data. I think you can also pass form values
(through a form submit) from one to the other. I hope others will correct me
if I'm wrong. Good luck.
 
J

Jay Villa

Thanks for the information. Suppose say, I do the individual pages in
ASP.NET then how do I call from the asp pages. Is it like
response.redirect("abc.aspx") or do I have to anything more ?
 
B

Bob Barrows [MVP]

Jay said:
Thanks for the information. Suppose say, I do the individual pages in
ASP.NET then how do I call from the asp pages. Is it like
response.redirect("abc.aspx") or do I have to anything more ?

Nope, that's all.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,149
Messages
2,570,841
Members
47,388
Latest member
EarthaGilm

Latest Threads

Top