Search results for query: *

  • Users: zhuanyi
  • Content: Threads
  • Order by date
  1. Z

    Question Error in retriving webpage

    Need to retrieve a webpage similar to this: https://thereserve1.apx.com/mymodule/rpt/CertificateInfo.asp?ad=Prpt&RIID=218&ftType=PRO And here is what I used: myRequest = DirectCast(System.Net.WebRequest.Create(sURL), System.Net.HttpWebRequest) myResponse = DirectCast(myRequest.GetResponse()...
  2. Z

    Resolved What is wrong with the following DateTime.ParseExact?

    Hi, I have a text string like this which I will need to parse: FriMar1200:00:00EST2010 And I used the following code: Date.ParseExact("FriMar1200:00:00EST2010", "dddMMMddHH:mm:sszzzyyyy", Nothing) And it is giving me a A first chance exception of type 'System.FormatException' occurred in...
Back
Top