Javascript Errors
-
Hi All, 1)My application is working fine. When i enter the account number in Textbox only. If i use the Querystring in url along the account number, then i am getting the Javascript Error and UI of the Page also scrumbled. Ex:QueryString--> Default.aspx?account=123212 Please suggest me,Is i am missing while the passing the value in "QueryString", to over come with Javascript Error. 2)The Javascript Error was "Missing the Character" such as ";", but nothing missing as per code.. It come only when i was the value through querystring. Thanks in Advance...
JohnDas
-
Hi All, 1)My application is working fine. When i enter the account number in Textbox only. If i use the Querystring in url along the account number, then i am getting the Javascript Error and UI of the Page also scrumbled. Ex:QueryString--> Default.aspx?account=123212 Please suggest me,Is i am missing while the passing the value in "QueryString", to over come with Javascript Error. 2)The Javascript Error was "Missing the Character" such as ";", but nothing missing as per code.. It come only when i was the value through querystring. Thanks in Advance...
JohnDas
put your exact code and write what you want exactly with query string.
Regards Keyur Satyadev
-
Hi All, 1)My application is working fine. When i enter the account number in Textbox only. If i use the Querystring in url along the account number, then i am getting the Javascript Error and UI of the Page also scrumbled. Ex:QueryString--> Default.aspx?account=123212 Please suggest me,Is i am missing while the passing the value in "QueryString", to over come with Javascript Error. 2)The Javascript Error was "Missing the Character" such as ";", but nothing missing as per code.. It come only when i was the value through querystring. Thanks in Advance...
JohnDas
Where are you passing the query string and how are you passing the querystring? Is there any javascript available? Please provide code...
Naina
-
Hi All, 1)My application is working fine. When i enter the account number in Textbox only. If i use the Querystring in url along the account number, then i am getting the Javascript Error and UI of the Page also scrumbled. Ex:QueryString--> Default.aspx?account=123212 Please suggest me,Is i am missing while the passing the value in "QueryString", to over come with Javascript Error. 2)The Javascript Error was "Missing the Character" such as ";", but nothing missing as per code.. It come only when i was the value through querystring. Thanks in Advance...
JohnDas
string accountno="12345"; or int accountno=12345; "Default.aspx?account=" + accountno
-
Hi All, 1)My application is working fine. When i enter the account number in Textbox only. If i use the Querystring in url along the account number, then i am getting the Javascript Error and UI of the Page also scrumbled. Ex:QueryString--> Default.aspx?account=123212 Please suggest me,Is i am missing while the passing the value in "QueryString", to over come with Javascript Error. 2)The Javascript Error was "Missing the Character" such as ";", but nothing missing as per code.. It come only when i was the value through querystring. Thanks in Advance...
JohnDas
Johndas wrote:
Please suggest me,Is i am missing while the passing the value in
Are you doing it using JavaScript or From Codebehind ? If you are doing it from Server Side Code Behind Try This :
string accountId="123"; Response.Redirect("Default2.aspx?AccountID=" + accountId);
Or If you still getting the error please show us the code.
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.