how do I make a web browser display html in vb? - html

So I have a web browser, and it needs to login using html code that will get modified by textbox inputs. I know how to use the textbox inputs to modify the code, but how can I make the web browser run the code?
The code:
<form action="https://api.roblox.com/login/v1" method="post">
<input name="username" value="">
<input name="password" value="">
<button>Login</button>

so from what i can see there are three ways you can do this :
1) You can make the vb form enter the inputs required and submit the form in the background according to user inputs (which you have mentioned you already now about).However heres some code to do it :
WebBrowser1.Document.GetElementById("username").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("password").SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.Forms(1).InvokeMember("submit")
2) You could also just save that html code as a html webpage and host it on a domain and then use this code to navigate it to your html page WebBrowser1.Navigate('http://www.yourhtmldomain.com')
3) If you want to run the html file from a local source lets say where the exe file for the web browser is located we would use this line of code ;
WebBrowser1.Navigate App.Path & "/mysite.html"

Related

Why does submit button demand a local resource request to favicon.ico?

I've got a very basic form here in which I want to test whether the input text value is correctly picked up when clicking the submit button.
<form id="form1" onSubmit="console.log(document.getElementById('inkomen1').value)">
<input type="text" id="inkomen1" name="inkomen1">
<button type="submit" form="form1" value="Submit">Submit</button>
</form>
So I've set the form onSubmit to display the contents of the input text field through console.log. Live this works, but locally I always get this strange error in my console:
Not allowed to load local resource: file:///favicon.ico
Why doesn't this work when I text the file locally and why this request for 'favicon.ico'? Can I make it work locally somehow too?
It's has nothing to do with the code you included in your question. You have an HTML code that has a link to a favicon. The link has an absolute path file:///favicon.ico which is not correct when running your code in a different environment.
Use a relative path, if your favicon is in the same path as your HTML you can set it to:
/favicon.ico
UPDATE
Try to add custom action to your form
<form id="form1" action"targetPageHere" onSubmit="console.log(document.getElementById('inkomen1').value)">
Maybe the default action page is not your page and has a different code that include this reference.

HTML input file connection was reset error

We are trying to upload files to blob storage, the process currently works, however, when trying to upload a file greater than ~28.5MB through the HTML input type="file" element, a connection was reset error message appears. When debugging, the page never hits our httppost method in the C#. However all files we have tested under 28.5MB will upload correctly.
This is the file input in our cshtml page.
<input id="files" type="file" asp-for="UploadFiles" multiple />
Our form looks like this:
<form method="post" enctype="multipart/form-data" asp-area="JobManager" asp controller="KnowledgeBase" asp-action="EditItem">
There is a limit in Kestrel noted at https://github.com/aspnet/Announcements/issues/267.

Fill field value while page is loading in HTML Page

I have a third part web address (www.samplespage.com). I call this page from another web site. is it possibe to fill some field values before page load or after page load? I tried vith URL parameters but It did not work.
www.samplespage.com?id=fieldId&value=fieldValue
This is how it looks like in codes. (I picked up from source via F12 Development tools in IE)
<input name="fieldName" id="fieldId" size="12" maxlength="11" value="">
When It's an HTML page It works with URL parameters otherwise You need to use like Selenium or Ptyhon ..

Unable to run asp file. Instead being prompted to download said asp file

Currently, I have my html code have a form that inputs a first and last name. I have set the input type as submit and set the action attribute as the asp file. However, when I click the submit button, my brower shows me a dialog box and asks if I wanted to download the said asp file.
Here is the html code:
<!DOCTYPE html>
<html>
<body>
<form action="test1.asp" method="get">
First Name: <input type="text" name="firstname" /><br />
Last Name: <input type="text" name="lastname" /><br />
<input type="submit" value="Add Customer" />
</form>
</body>
</html>
I've researched on the submit form but my form code looks almost exactly like the code on this website: http://www.w3schools.com/html/html_forms.asp
I have also seen a question that is similar to the problem I am having:
ASP : File download of ASP page comes instead of executing it
However, in that scenario, the asp file is being executed itself, while I am trying to execute the asp file through a html form.
As always, any and all help is grealty appreciated.
Classic ASP is not Installed by default on IIS 7.0 and IIS 7.5, see here and here to see how to enable it if this is the case for you.
Copied from these links:
In IIS 7.0 and 7.5, the classic version of ASP is not installed by default. Because of this, you might see HTTP 404 errors when you try to browse to an ASP page on your server, or you might see the source code for your ASP page displayed in your browser window. Both of these error conditions are created when configuration settings that are used to define the environment for classic ASP are not installed.
Hope this helps.

HtmlInputFile through post action

I have a web page which have 3 controls:
form using the post command.
in the form i have an input file control named "myFile".
a button
the upload process works just fine, until I'm trying to post the form and handle the upload in another form.
Request["myFile"] and request.Params["myFile"] gave me nothing
It's the Request.Files collection you need - look it up in the .NET Framework docs:
Request.Files["myFile"]
Also make sure that the enctype attribute of your upload form is set correctly - it should be "multipart/form-data" if the form contains file inputs.
Maybe this will help
<input type="file" size="50" id="ipFile" runat="server"/>
runat="server" gives you access tot the HtmlInputFile structure