If KeyCode = KeyCodes.KEYCODE_BACK Then
sQuery=(wv.Url)
If squery.IndexOf("FirstPage.aspx")<0 Then
wv.Back
Return True
Else
Return False
End If
End If
when a 'CMD1' command in FirstPage.aspx is clicked it drills down to SecondPage.aspx and from there to the ThridPage.aspx. When Back button is pressed it goes to Secondpage.aspx.
when 'CMD2' Command is Firstpage is clicked it drills down to SecondPage and then to ThirdPage. When Back button is pressed, SecondPage.aspx is called but it is of the First Command(CMD1).
Subsequently, how many ever commands in the first page is clicked and drilled down to third page, when back button is pressed, CMD1's SecondPage is only loaded in Phone.
Only when Back button of thrid page is pressed, it moves to the wrong SecondPage. It works fine when the Command in the firstPage is Clicked.
But it works perfect in Asp page.
I've tried Clearing the Cache using the code
Dim o as Reflecter
o.Target = WebView1
o.RunMethod2("clearCache","False","java.lang.boolean")
But it dosent seem to work.
Please help.
Regards,
S. Sudarshana
sQuery=(wv.Url)
If squery.IndexOf("FirstPage.aspx")<0 Then
wv.Back
Return True
Else
Return False
End If
End If
when a 'CMD1' command in FirstPage.aspx is clicked it drills down to SecondPage.aspx and from there to the ThridPage.aspx. When Back button is pressed it goes to Secondpage.aspx.
when 'CMD2' Command is Firstpage is clicked it drills down to SecondPage and then to ThirdPage. When Back button is pressed, SecondPage.aspx is called but it is of the First Command(CMD1).
Subsequently, how many ever commands in the first page is clicked and drilled down to third page, when back button is pressed, CMD1's SecondPage is only loaded in Phone.
Only when Back button of thrid page is pressed, it moves to the wrong SecondPage. It works fine when the Command in the firstPage is Clicked.
But it works perfect in Asp page.
I've tried Clearing the Cache using the code
Dim o as Reflecter
o.Target = WebView1
o.RunMethod2("clearCache","False","java.lang.boolean")
But it dosent seem to work.
Please help.
Regards,
S. Sudarshana