Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I am entering one title heading on one asp page and i want it to displ

Status
Not open for further replies.

shailsonia

Programmer
May 5, 2004
5
US
I am entering one title heading on one asp page and i want it to display on another page how should i do that.Plese help
 
What?

1) please enter a valid subject
2) Do you mean the title tag?
<html><head><title><%=title.....???

then just pass it as a querystring and insert it the same
e.g.
<html><head><title><%=Request.QueryString("title").....

___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
no no not the page title. I have one textbox field, I want whatever user enter in that textfield it should display on second page
 
POST or GET methods?

Response.Write Request.Form("textboxName")
or
Response.Write Request.QueryString("textboxName")


Try some tutorials on ASP and forms. The FAQ section here has multiple examples in the other topics also. I have a FAQ on form processing also I think in there


___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
aspuser or shailsonia ?

Post what you tried so far. The relative code only will due

The form and the processing script on the next page that is

___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
stitle = Response.Write(Request.QueryString("text"))

text is textbox field name
stitle is the variable

I am getting this error
Expected end of statement

its aspuser, shailsonia is one of my coworker
 
you can't assign a Response.Write to a variable

try looking through here
faq333-4050

___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top