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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Putting Javascript value into ASP 2

Status
Not open for further replies.

Fendal

Technical User
Sep 13, 2005
178
GB
Hi, All

Does anybody know how I can put and use the value of fname into my ASP code,

Code:
<script>
var fname="John Smith";
</script>

Code:
<%=fname%>

I would normally use,

Code:
Dim fname
fname="John Smith"

or even

Code:
document.write(fname);

in javascript, but on this occasion I need to get the variable from the javascript (if it can be done),

Thanks.
 
You can write ASP in JavaScript instead of VBScript if you prefer.

I'm not really sure about your question... Are you asking about sending a value from the client browser script to the server? If so you can do that by submitting a form, using an HTML anchor with QueryString, or by using xmlhttp.

 
Is there confusion here about when the script executes?

The ASP runs on the server, the output from the ASP is sent to the browser client. The browser then parses this output and runs any client-side code... by the time this happens the server-side code is done and finished.

Remember that your Active Server Page as the source script code for two separate software programs that run on two separate computers that talk to each other over HTTP... this is different from normal software development so its easy to lose sight of that.
 
ya just use the same thing...<%=fname%> inside the javascript....

-DNG
 
Hi, Sheco

I'll explain it a little more, I am getting the javascript from another site (not mine, so I can't edit it), I'm using

Code:
<script src='[URL unfurl="true"]http://domain.com/j.asp?profiles=4327'></script>[/URL]

on the profiles page it contains plain javascript, things like,

Code:
var fname="a name";
CL="red";
Ht="6Ft2Inch";
Lo="UK"


I was hoping to put those variables into an asp code on the same page, or put them into form inputs to be sent to another page.

Thanks for your posts.
 
I did try that DotNetGnat, maybe I should try it again, should that work?.
 
oh, I see what you mean "inside the javascript", I can't edit the javascript.
 
I'm think I'm confused.

Do you want an ASP running on Server #1 that fetches the text of a .js file from Server #2, makes slight alterations to that text, and then returns the altered text to the browser?
 
If the .js file on Server #2 is static then can you just grab a copy of it and make your alterations to the copy? That would certainly make this a lot easier.

If the .js on the other server is dynamic then you'll need to grab a new copy each time.
 
It's the latter, I think this is about to get very complex, I'll have to think of a better(easier) way.

Thanks, Sheco.
 
What you need is to fetch the content of the j.asp page.
Something like this:
Code:
Dim sURL, oXML, sContent
sURL = "[URL unfurl="true"]http://domain.com/j.asp?profiles=4327"[/URL] 
Set oXML = Server.CreateObject("Microsoft.XMLHTTP")
oXML.Open "GET", sURL, False
oXML.Send 
sContent = oXML.responseText
'sContent is the content of the page fetched
'Now you should parse and extract the information needed from it
Set oXML = Nothing
I hope this helps!

[morning]
 
Thanks, Joulius, I'll look into that.
 
That works great, thanks Joulius, one additional question though, when the content is returned some obscure/rare characters like " ¡ " display as question marks, is there away to fix that.?

Thanks.
 
Could you post your code and the content retrieved here?

[morning]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top