Search results for query: *

  1. V

    client-side script in webbrowser control .net2.0

    I am navigating through WebBrowser to certain site. in this site when you change the color dropdownlist it triggers some javascript. I guess it's Ajax. this script updates certain controls in form (in my case "size" dropdownlist - different sizes for different colors. I am able to do whole...
  2. V

    client-side script in webbrowser control .net2.0

    Working with .net WebBrowser control I am navigating through WebBrowser to certain site. in this site when you change the color dropdownlist it triggers some javascript. I guess it's Ajax. this script updates certain controls in form (in my case "size" dropdownlist - different sizes for...
  3. V

    programmatically login to secure website

    when i check some checkbox or radiobuttons and want to post it.
  4. V

    programmatically login to secure website

    thanks for answer. looks like webbrowser.DocumentCompleted doesn't fire when i refresh the browser or navigate. Same with ReadyState. the loop while wb.readystate<>WebBrowserReadyState.Complete become infinite. I had to use timer to get over this problem. i's done, but done in dirty and fast...
  5. V

    programmatically login to secure website

    Webbrowser method works. it's slower, but it works. the only problem i have now it's I cannot figure our when the document is fully loaded in webbrowser control. The navigate method is asyncronic, so i need to delay the main thread until document is loaded. otherwise i'm getting errors like...
  6. V

    programmatically login to secure website

    Hidden webbrowser I had no idea that webbrowser control able to programmatically submit forms (perform button click ,etc). If it's possible please post some code for me. thanks a alot
  7. V

    programmatically login to secure website

    SessionId is saved in previous request. thanks for reply. Actually i'm getting sessionid from the first webresponse. I'm saving it to the string cookie1 and also in cookiecollection c. Dim sURL As String = "" Dim WebReq As HttpWebRequest Dim WebRes As HttpWebResponse Dim myStream As Stream...
  8. V

    programmatically login to secure website

    hi everyone I'm trying to login in secure site. nike.net. from my windows application. I am using vb.net. I'm able to catch all the cookies and headers from firtst httpwebresponse. but when i'm trying to login (i used both webclient and httpwebrequest) i'm getting "System.Net.WebException =...
  9. V

    log soap message in vs.net

    I am working on asp.net application that uses Axis webservice. in vs.net i added webreference to my project. then created proxy for that reference and using some of the methods. This part works ok( except i am getting error message from webserver). Now i need to save soap message I'm sending to...
  10. V

    log soap message in vs.net

    Hi, everyone. I need to log soap message that is submitted to the webservice. I use VS.net 2005, and for me the whole thing was just webreference, proxy created from that reference and methods of that proxy object. Unfortunatelly, proxy class has no ways to show soap message ( or at least i...
Back
Top