this is the only method I found for splitting a QueryString in ASP... but now I need to use that variable/string in my JavaScript function... thanks
please note this is ServerSide JavaScript... so var imdbLink = "<%= imdbLink %>"; won't work. thanks
Code:
<%
Dim imdbLink
ID = Request.QueryString("u")
ID_split = Split(ID, "/title/")
imdbLink = ID_split(1)
%>
<script language="javascript" runat="server">
var theLink = imdbLink;
...
</script>
Comment