T
Themos
Hi,
I have a ASP.NET Mobile site, and have come against a strange bug. A page which contains mobile:link tags renders perfectly on all phones (BreakAfter=True), but strangely enough, on Nokia devices it renders WML content but does not display a br (line break) tag after the anchor link. Any ideas?
You can verify that with the following code:
Dim req As HttpWebRequest
Dim res As HttpWebResponse
Dim rd As IO.StreamReader
Dim bytes() As Byte
req = HttpWebRequest.Create("your_page_with_Links_here")
'Any other agent like SIE-SL45/3.1 UP/4.1.19i renders the br tag after links
req.UserAgent = "Nokia"
res = req.GetResponse()
rd = New IO.StreamReader(res.GetResponseStream)
msgbox rd.ReadToEnd
Posted via DevelopmentNow Groups
www.developmentnow.com/g
www.developmentnow.com
I have a ASP.NET Mobile site, and have come against a strange bug. A page which contains mobile:link tags renders perfectly on all phones (BreakAfter=True), but strangely enough, on Nokia devices it renders WML content but does not display a br (line break) tag after the anchor link. Any ideas?
You can verify that with the following code:
Dim req As HttpWebRequest
Dim res As HttpWebResponse
Dim rd As IO.StreamReader
Dim bytes() As Byte
req = HttpWebRequest.Create("your_page_with_Links_here")
'Any other agent like SIE-SL45/3.1 UP/4.1.19i renders the br tag after links
req.UserAgent = "Nokia"
res = req.GetResponse()
rd = New IO.StreamReader(res.GetResponseStream)
msgbox rd.ReadToEnd
Posted via DevelopmentNow Groups
www.developmentnow.com/g
www.developmentnow.com