asp and aspx ?

sureshcd10

Regular
Joined
Dec 25, 2003
Messages
77
If u look into an ASP page you will see the aspcode
If I am coping and pasting that code into an aspx page will it work or not ?Or what error it show
and why .How u can correct that error ?

How can I pass a value from my asp page to an aspx page

Thank u for u r time and consideration
 
It should work, however you are probably better using 'code behind' and separating the code from the UI - this leads to a much cleaner coding environment.
Also under .Net you have full access to the language's features (rather than asp were VBScript was a heavily cut down version of VB) including type safety so you may want to go and give you're variables the correct data types.
 
Back
Top