Click here to Skip to main content
15,905,071 members
Everything / HtmlDocument

HtmlDocument

HtmlDocument

Great Reads

by Member 12149082
Description of useful SVG Filters and Interactivity
by Shridhar Gowda
This tip will give complete knowledge of how to change master page, render controls and accessing its eventhandlers @ runtime.

Latest Articles

by Member 12149082
Description of useful SVG Filters and Interactivity
by Shridhar Gowda
This tip will give complete knowledge of how to change master page, render controls and accessing its eventhandlers @ runtime.

All Articles

Sort by Score

HtmlDocument 

5 May 2015 by Mario Z
HtmlAgilityPack is a library for parsing HTML content, it is not used for client - server interactions. So in short you cannot submit a forms with it.But you can create a submission request yourself with a WebRequest class[^].If I were you, I would investigate the request that browser...
30 Aug 2016 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, you may find it...
30 Aug 2016 by Peter Leow
We do not do your homework. But I can provide you with some useful resources:1. First, read and follow the hands-on in Beginner's Guide to HTML5 & CSS3 - Formidable Forms with HTML5[^]. It will tell you how to create an HTML5 Form and submit Form values from one page to another.2. Next,learn...
31 Aug 2016 by Patrice T
Mr Hunt your mission is not to improve your begging skills.Your mission is to work on your teacher's problem, use the course you attended, the problem must be related to.If you are stuck, tell your teacher, so he will know if some remedy is to be applied.
29 Aug 2017 by Thomas Daniels
The tag makes sure a new paragraph is created, because the HTML specification (constructed by the W3C) says so: HTML5 (w3.org)[^]. Specific part: 4.4.1 The p element — HTML5[^]. The tag doesn't actually "know what to do", because HTML is just a markup language and doesn't "know" anything by...
17 Dec 2013 by MAYANK GEETE
HtmlDocument document = new HtmlDocument();document.Load("url");foreach (HtmlNode image in document.DocumentElement.SelectNodes("//img[@src")){ HtmlAttribute url = image["src"]; imageUrls.Add(url.Value);}i m using this code but it is not working on asp.net it's required...
18 Dec 2013 by Marc Gabrie
You can use System.Net.WebClient class to download any content from the web. See description and sample code here http://msdn.microsoft.com/en-us/library/ez801hhe(v=vs.110).aspx[^]
15 Jun 2014 by Fadi Halboni
you can use Enabled and disabled to ignore it with readonly.
7 Jan 2015 by Suvendu Shekhar Giri
This should do your job-Change the width percentage as per requirement.Example It will look like below Hope, it helps !Otherwise let me know :)
6 May 2019 by F-ES Sitecore
Use .Attributes on the node to read that nodes attributes like data-index etc Select Nodes | Html Agility Pack[^]
6 Jul 2020 by Dave Kreskowiak
You are NEVER going to get millisecond accuracy to place orders. It's simply not possible to do that because the internet is a shared system where traffic fluctuates constantly and impacts the delivery and response times of your content...
8 Nov 2020 by Sandeep Mewara
Given you are a beginner, you need to learn. for developing with any thrid party application, their documentation is the key. Start from there: Launch Zoom client from your App - Additional Tips - Client SDKs - Zoom Software Development Kit...
28 Sep 2021 by Dave Kreskowiak
Never heard of it. Your BEST source of information on using a 3rd party product is going to be the vendor of that product. See the "Support" link at the top of this page[^]? That's where you go for support the product.
5 Apr 2022 by CHill60
This is too vast a topic to answer in a little input box like this. Plus, you are meant to do your own research. Try starting here : Build a simple website using HTML, CSS, and JavaScript - Learn | Microsoft Docs[^] or buy a good book on the subject
19 Mar 2023 by Mike Hankey
Since you're not showing code it's hard to say what's going on but this is the basics of what you need to produce an html page.
15 Jun 2014 by Mehul Thummar
how to stop press key backspace in readonly textbox?
16 Jan 2015 by Member 10623326
I need to fill inputs via webbrowser. When i try to getelementbyname i am getting null value. Could you help me solve this problem please?Here is html code of a website which i navigated:
17 Jan 2015 by Member 10623326
static HtmlElementCollection FillInputs(WebBrowser browser){var input = browser.Document.GetElementsByTagName("input");foreach (HtmlElement element in input){ if (element.GetAttribute("name") == "Surname") { element.SetAttribute("value", "My Surname"); ...
5 May 2015 by Abhilask kumar
Hello I want to make windows app that is auto login and fill needful data and submit the form in another web application through HtmlAgilityPack. Please help meThanks
28 May 2015 by Vidhya Raju
HTML heading 1 heading 2 heading 1 heading 2 heading 3Expected output heading 1 heading 2 heading 1
1 Jun 2015 by Peter Leow
Try PHP Simple HTML DOM Parser[^]
11 Jun 2015 by Member 11557708
Hello, i have a html file like below:my page and texts.and also this is where i want to past an imageor image link link like:(I put those spaces into pre, because question page makes it invisible without spaces. :D )Anyways...
14 Jul 2015 by Bob Stanneveld
Hello everyone,I'm having trouble with the WebBroser control. I'm using it to display a webpage from our MES system. The application is used to integrate peripherals such as a scanner.Currently we're supporting scanners through a COM port. We want to add support for USB scanners. USB...
20 Feb 2016 by Member 12333388
hi friends, i use a webbrowser control in vb.net to navigate to a webpage that displays an html table with data. the goal is to extract all data to an external file and i've pretty much succeeded it, but because the table consists of multiple pages i can't automate the navigation to the next (or...
21 Feb 2016 by OriginalGriff
If this relates to this site, then it's probably related to the DB server hardware problem they had yesterday.But this isn't the place to raise it: you need to talk to the admins who have direct access to the DB.Please ask here: Bugs and Suggestions - CodeProject[^] and they will sort you...
25 Mar 2016 by Member 12149082
Description of useful SVG Filters and Interactivity
30 May 2017 by Daniel André
Hello guys, today I am facing an huge problem. So I have an .html website for a local Tattoo Shop. I have an appointment page as well, to send emails to the tattoo artists. The thing is that I don't know how to send emails throught that. Here's a preview of what I have: ...
30 May 2017 by Afzaal Ahmad Zeeshan
What is the backend code here? PHP, ASP.NET, Node.js? HTML is not a live code, you cannot execute any command from it — JavaScript can, but you need to get a third-party subscription etc., so, can you tell where you hosted it, so that we can guide you a bit further. There are some ways to do...
29 Aug 2017 by Muhammad Raza Khan
I am new in HTML and all the coding thing so my teacher ask me a question he put this , to make a paragraph and ask me that how that tag knows what to do and where he comes from whats its source at that time i gave him stupid answers like files saves on backhand but after that he...
29 Aug 2017 by Patrice T
Quote: how that tag knows what to do The tag knows nothing and does nothing. The one knowing and doing is the browser, the html page is just text. The tags are seen by browser as directions to render the page. This site is a tutorial site about wen apps, the site allow you to experiment....
6 May 2019 by Member 10457276
Hello, I have this html with table. I can get "col1" and "cal2" but I don't know how to get also value of "data-index", "data-name": Green
6 Nov 2019 by gcogco10
I want to improve my code, by changing the status or current value if its been changed from 0 to 1. E.g I have two button if the first one is clicked, the status should change its value and show message similar when turning a bulb on and off. I want to do something similar to my ajax call...
6 Nov 2019 by MadMyche
Your javascript is firing both AJAX calls on page load, as that is what $(document).ready(function() does. There is nothing that ties either of these AJAX routines to the buttons themselves $(document).ready(function(){ $.ajax({...
21 Dec 2020 by Member 15025314
hi i have created a favourites button using.append to store users response which is displayed onto the favourites page. I am trying to now use the same id's to store these responses in a textfield and mailto a email preferablly using a button of...
9 May 2021 by Codeboy_
JavaScript Forms function compute() { two=2 var a=parseFloat(document.answer.area.value) var b=(Math.PI)*a*a var c=parseFloat(2)*parseFloat(num1)+parseFloat(D) var d=parseFloat(2)*parseFloat(num2) document.answer.area.value=b...
22 Jul 2021 by SeeSharp2
There is no way for us to know for sure because we cannot see your page. However, all you have to do is use the developer tools to see what is going on. It is quite possible you are loading some css that is changing the styles of anchor tags. ...
26 Nov 2021 by afolabi busari
I wanted to duplicate input field and and insert into another div which I have achieved. But I was unable to hide the remove button if the input field is not more than one. What I have tried: the html side:
5 Apr 2022 by Shndigan Shndi
I have learned HTML CSS js but the problem is that when I code, I code over an HTML document and i can't find my website on google BCS it's an HTML document, therefore, I want help from you to make my own website link like https::/loremimpsum.com...
16 Oct 2022 by Dave Kreskowiak
There is no way to force a download from that link when the page loads. That's just not an option. You would have to use javascript to download the file automatically. Some examples:...
6 Feb 2015 by Shridhar Gowda
This tip will give complete knowledge of how to change master page, render controls and accessing its eventhandlers @ runtime.
16 Jan 2015 by Zoltán Zörgő
Make sure, that you try to access the elements only when DOM is ready - be aware, that the control is running asycronously. I don't know if you are trying this from console or from windows forms, but the apprach is highlighted here: How Use WebBrowser without winform[^]. It will work, it worked...
17 Dec 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
You can use Html Agility Pack[^].See one example and the answer - How can I use HTML Agility Pack to retrieve all the images from a website?[^].
29 Aug 2017 by W Balboos, GHB
Try HTML - Wikipedia[^], which will increase your knowledge, in general, about what you will be doing.
14 Jun 2015 by aksjustcool
I have a DataTable where the first Column contains the link for another page(that is done by JavaScript). I need to call these link one by one and get the data from the page. But I am unable to load it into webbrowser one by one.Only the last page is being load. Is there any alternative or...
28 Apr 2017 by yadlaprasad
Hi in my master page i kept below line to make my website compatible for IE11 . when my page rendered on IE11 browser it is still showing IE8(Default) on pressing F12(developer tools)- Document Mode. Sometimes it is rendering as...
19 Mar 2023 by Saranya Reddy
When I am writing HTML code in Notepad and saved it. And When I try to open it in browser the complete code written in HTML notepad is printed in browser. How to resolve this issue What I have tried: I tried to change the properties of notepad...
14 Dec 2019 by Member 12268183
Hello! I would like ot load html page and take some information, creating C# application. I received the following error: An unhandled exception of type 'System.NullReferenceException' occurred in CursorMove.exe Additional information: Object reference not set to an instance of an...
5 May 2019 by Christian Graus
Why not just read it as XML, given that it is?
21 Dec 2020 by W Balboos, GHB
I think you really need to learn how HTML and javaScript work. How to use an ID to modify an element (like put text into it). How to send data from the current page to a new page. Really, just how the whole thing works. You may wish to use the...
7 Jan 2015 by Member 11359396
I'm still newbie for html code, and I have a problem with placing my sidebar in the same row with content. I use a free css template. I want my sidebar like this: *content #sidebar ********** ####********** ####********** ####********** ####********** #### but it turns out...
3 Jan 2016 by Member 12224285
Dear All, i am in need HTML code to register a new student have name, father name, enrollment number, course, mobile number, submit fee[two option] by cash or draft
3 Jan 2016 by Abhinav S
Create an HTML form -HTML Forms[^]Forms in HTML documents[^]That won't be enough. You will need to store this information in a database or flat file.
21 Feb 2016 by Member 12341327
Dear Webadmin, I forgot my passsword and when I sent the request : No Email from you but a Cooki Problem is anounced ... Iexplorer and FierefoxThank youWhat I have tried:Browser Setting enable cookies, Emal to yoo, and wondering wondering
30 Aug 2016 by Yudhi Saputra
HELP, I have A solution from my friend.i created 2 html to passing to another html. See this code:*----PAGE1----*Please enter your name: Then
30 Aug 2016 by Beginner Luck
IS example codevar person = {firstName:"John", lastName:"Doe", age:50, eyeColor:"blue"};// StorelocalStorage.setItem("info1", person );// Retrievedocument.getElementById("result").innerHTML = localStorage.getItem("info1");
8 Nov 2020 by Sanin Kiliyamannil
I need to make an HTML document that can access zoom application that were been installed on my system. But I don't know which attribute can open zoom What I have tried: Actually, I am a perfect beginner who had come into the world of programming
16 Oct 2022 by Arnav Deshmukh 2022
Im using this command to download a file when I click on the download button in my website download its working perfectly but when I go to for example https://website.com/text.txt it does not download...