Click to See Complete Forum and Search --> : writing test into asp code
martha
10-17-2004, 12:39 PM
Hello!!
How shall I add text in between code?
e.g. Request.Form("full_name") mytext & Request.Form("company_name")
Thanks
David Harrison
10-17-2004, 02:17 PM
Like this:dim someVariable
someVariable = request.form("full_name") & "mytext" & request.form("company_name")But this is an ASP question not a DHTML question so I have moved the thread to the appropriate forum.
martha
10-17-2004, 03:45 PM
Ok, you are right..
But what if I want mytext to be inserted into a new paragraph? Am I asking too much?
Thanks
David Harrison
10-17-2004, 05:12 PM
Then you would do this:dim someVariable
someVariable = request.form("full_name") & "<p>mytext</p>" & request.form("company_name")