|
-
Mar 18th, 2005, 12:48 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] passing object to classic asp
is it possible to pass form objects from a .net asp into a classic asp?
am i doing it wrong?
should i call classic asp from the button event? i've tried this but it the object value of the form is not passed.
onclick event of the button i placed
"response.redirect("test.asp")
If a post has helped you then Please Rate it!
-
Mar 18th, 2005, 01:24 AM
#2
Re: passing object to classic asp
What exactly do you want to pass? Have you tried passing it in the querystring?
-
Mar 18th, 2005, 04:28 AM
#3
Thread Starter
Fanatic Member
Re: passing object to classic asp
m trying to pass the object value in the form and not by using the
url parameter method like "test.asp?user=mike".
If a post has helped you then Please Rate it!
-
Mar 18th, 2005, 09:36 AM
#4
Addicted Member
Re: passing object to classic asp
Response.Redirect doesn't pass any form data at all, it is a simple redirect.
You should use Server.Transfer, with that you can set a parameter to send all the form data from the last post.
Server.Transfer("test.asp", True)
-
Apr 18th, 2005, 11:24 PM
#5
Thread Starter
Fanatic Member
Re: passing object to classic asp
ok i'll try that. thanks for replyng.
If a post has helped you then Please Rate it!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|