Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. receiving posted data in a page from SHDocVw.InternetExplorer

receiving posted data in a page from SHDocVw.InternetExplorer

Scheduled Pinned Locked Moved ASP.NET
data-structurestutorialquestion
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    sanjubaba
    wrote on last edited by
    #1

    hi,    i am opening a web application from a windows applicatino using SHDocVw.InternetExplorer. eg. object vPost, vHeader, vFlags, vTargetFrame, vUrl;                   string vPostData;                   vPostData = "SecKey=123&Uname=xyz";                   SHDocVw.InternetExplorer ie; //Class ie = new SHDocVw.InternetExplorerClass();                   vFlags = null;                   vTargetFrame = null;                   vUrl = "http://localhost/app/StartUpPage.aspx";                   vHeader = "Content-Type: application/x-www-form-urlencoded" + Convert.ToChar(10) + Convert.ToChar(13);                   //Convert the string to post to an array of bytes.                   vPost = ASCIIEncoding.ASCII.GetBytes(vPostData); ie.Navigate2(ref vUrl, ref vFlags, ref vTargetFrame, ref vPost, ref vHeader); In the above code vpost is an bytes array which i am posting to the web application. my question is how to receive the posted data in a web application

    Sandeep Kumbhar

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups