hello Members,
I have an ASP.NET website that uses an IFrame settings and I am using the response.redicret("...") to load a new page within the same IFrame. below is my
code snippet.
Response.Redirect ("../TrackApp/history2Display.aspx?deviceUID=" + DevUID + "&fromDate=" + startDate + "&endDate=" + endDate);
when the page redirects, I get a javascript error on the status bar stating that the fromDate is not define. However, when I look at the url posted to the page, the query string is attached correctly with the seclected values from the previous page posting the request.
Example error bellow.
Line: 161
Char: 2
Error: 'fromDate' is undefined
Code: 0;
URL: http://localhost:1651/TrackFusion/TrackApp/history2Display.aspx?deviceUID=227
&fromDate=9/10/2007%201:00:00%20AM&endDate=11/10/2007%201:00:00%20AM
As we can see, the values are posted to the url string. however, my javascript in the AJAX code cannot find the value for fromDate and presumably endDate.
I would appreciate any assistance I can get from anyone who understand what is going on.