C# How to Navigate with post data using the geckofx browser?

霸气de小男生 提交于 2019-12-24 11:46:07

问题


I'm using C# with Visual Studio 2013, working with the geckofx browser, and I need to Navigate using POST. The Navigate method is telling me I need a MimeInputStream, which is intuitive to use. The problem I'm facing with that is how to initialize it? MimeInputStream doesn't have a constructor. I found that the following code compiles, except the part where it can't cast the GeckoMIMEInputStream into a MimeInputStream like that. My code is:

string dataString = string.Format("username={0}&pwd={1}, Username, Password);

GeckoMIMEInputStream postData = new GeckoMIMEInputStream();
postData.AddHeader("Content-Type", "application/x-www-form-urlencoded");
postData.AddContentLength = true;
postData.SetData(dataString);

myGeckoFXBrowser.Navigate("javascript:void(document.getElementById('formname').submit())", GeckoLoadFlags.ReplaceHistory, null, postData);

回答1:


Thanks Tom, that sent me to the right direction; here is my production code:

protected void NavigateWithPostData(string URLToGoTo, string POSTData)
{
    var postData = MimeInputStream.Create();
    postData.AddHeader("Content-Type", "application/x-www-form-urlencoded");
    postData.AddContentLength = true;
    postData.SetData(POSTData);

    mainBrowser.Navigate(URLToGoTo, GeckoLoadFlags.BypassCache, mainBrowser.Url.AbsoluteUri, postData);
}

Then use it like:

    string dataString = string.Format("SMNTH={0}&SDAY={1}&SYR={2}", workingDate.Month, workingDate.Day, workingDate.Year);

    NavigateWithPostData("http://<yourapp>", dataString);



回答2:


I haven't actually tried this, but:

var postData = MimeInputStream.Create();
postData.AddHeader("Content-Type", "application/x-www-form-urlencoded");
postData.AddContentLength = true;
postData.SetData(dataString);



回答3:


I know it's been a long time, but I am experiencing the same issue :

var postData = MimeInputStream.Create();

I have a classic "system.NullReferenceException", no constructor for MimeInputStream as said before...



来源:https://stackoverflow.com/questions/24792534/c-sharp-how-to-navigate-with-post-data-using-the-geckofx-browser

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!