Your Ad Here Visit new version of this Blog

Error: not well-formed

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;

}

1 comments:

Unknown said...

Try the following solution..change the '&' sign with '&'
function GetChatLink(user)
{

var url= "Server.aspx?action=Login&u" +user;
return url;
}