Error: not well-formed, the following query string is not wellformed, browser causing error not well-formed
function GetChatLink(user)
{
var url= "Server.aspx?action=Login&u" +user;
return url;
}
This Blog has been moved to a new Workspace called
Sharp Contents
Visit new version
of this blog
Thank you
Error: not well-formed, the following query string is not wellformed, browser causing error not well-formed
function GetChatLink(user)
{
var url= "Server.aspx?action=Login&u" +user;
return url;
}
Labels: JavaScript
Tublogaqui.blogspot.com | Diseño de Design Disease | A Blogger por Blog and Web
1 comments:
Try the following solution..change the '&' sign with '&'
function GetChatLink(user)
{
var url= "Server.aspx?action=Login&u" +user;
return url;
}
Post a Comment