i usually code in coldfusion but now i want to create 2 text html files where i pass a parameter on href?
This normally works in coldfusion!
Page1
Expand|Select|Wrap|Line Numbers
- <a href="test.htm?test=100','','height=300,width=300">
Expand|Select|Wrap|Line Numbers
- <html>
- <head>
- <param name="test" value=""/>
- </head>
- <body>
- <cfoutput>
- #test#
- </cfoutput>
- </body>
- </html>