How do I convert guid to string in javascript. I am getting guid from the querystring, and m not able to process it as is. I have tried the following ways to do it but it doesnt seem to work.

var guid = {<%=Request.QueryString["Guid"]%>}.toString();
var guid = <%=Request.QueryString["Guid"]%>.toString();
var guid = (string)<%=Request.QueryString["Guid"]%>;
var guid = (string){<%=Request.QueryString["Guid"]%>};

Any suggestions?

link|improve this question

67% accept rate
can you give us an example url that you're testing with? – lincolnk Aug 9 '10 at 16:17
I would suggest adding more information on the 'Doesn't Seem To Work' part. – Tony Abrams Aug 9 '10 at 16:57
View the page source and look what is outputted. Normally shows you your problem. – epascarello Aug 9 '10 at 17:24
feedback

2 Answers

up vote 3 down vote accepted

Try quoting the string, this should work...

var guid = '<%=Request.QueryString["Guid"]%>';
link|improve this answer
Nope, doesnt seem to work. – Hna0002 Aug 9 '10 at 16:00
What is the output?.. you could try: var guid = '<%=Request.QueryString["Guid"].ToString()%>'; but it shouldn't make a difference. – Quintin Robinson Aug 9 '10 at 16:02
That works! Thanks. – Hna0002 Aug 9 '10 at 18:04
feedback

Have you tried just:

var guid = {<%=Request.QueryString["Guid"]%>}
link|improve this answer
Nope, doesnt seem to work. – Hna0002 Aug 9 '10 at 16:01
What do you mean by doesn't work? Are there any error messages? – Tony Abrams Aug 9 '10 at 16:56
In debug mode it was showing without any quotes or anything as if its an int or something. '<%=Request.QueryString["Guid"].ToString()%>' worked. Thank you! – Hna0002 Aug 9 '10 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.