[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.mobile

URL problem in MIT and Openwave mobile browsers

(pdaschedule)

8/17/2002 11:01:00 PM

There is a link label in the mobile form. In the form load code, I
assigned this URL to the NavigateURL property:

lstA.NavigateURL = "page2.apsx?para1=xxx&para2=yyyy"

This work fines in desktop IE.
But Openwave emulator less than 6.0 and Siements S45 emulators return
compiler errors.

I then changed the URL to use '%26' instead '&'

lstA.NavigateURL = "page2.apsx?para1=xxx%26para2=yyyy"

Now All the emulators regonized the URL, but the URL failed in
desktop IE.

I later use server.urlencode to encode the URL, but this failed in all
browsers.

Has anyone encountered this problem and resolved this problem?