Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
425 views

Get innertext between two tags - VB.NET - HtmlAgilityPack

I'm using HtmlAgilityPack and I want to get the inner text between two specific tags, for example: <a name="a"></a>Sample Text<br> I want to get the innertext between and tags: ...
2
votes
1answer
150 views

Retrieving Inner Text of Html Tag C#

I have a string that contains html. Inside of this string there is an html tag and I want to retrieve the inner text of that. How can I do that in C#? Here is the html tag whose inner text I want to ...
2
votes
2answers
645 views

Using JAXB to extract inner text of XML element

Problem Given the following XML configuration file: <main> <name>JET</name> <maxInstances>5</maxInstances> <parameters> <a>1</a> ...
2
votes
1answer
728 views

How do I choose between innerText or nodeValue?

When I need to change a text within a span element, which one should I use and what is the difference: var spnDetailDisplay=document.getElementById('spnDetailDisplay'); ...
1
vote
3answers
153 views

Need jQuery text() function to ignore hidden elements

I have a div set up something like this: <div id="test"> <p>Hello</p> <p style="display: none">Goodbye</p> </div> EDIT: To clarify, this is the simplest example. ...
1
vote
1answer
371 views

Read iframe content using Webbrowser C#

I know that I can access all iframes using the following properties of webbrowser: string html = webBrowser1.Document.Window.Frames[0].WindowFrameElement.InnerText; But I'm struggling with ...
1
vote
4answers
371 views

Firefox's textContent doesn't match Chrome's innerText

Since Firefox doesn't have innerText, I am using textContent to retrieve the text of the body of a document. However, textContent returns anything within noscript and script tags that are in the body ...
1
vote
5answers
164 views

Get InnerText from Collection

Is there a way to get the innertext of a node when the node is inside a collection Currently i have this Collection<string> DependentNodes = new Collection<string>(); foreach (XmlNode ...
1
vote
3answers
184 views

InnerText alternative in mozilla

Does any one know innerText alternative of a span in mozilla? My span is <span id='cell1'></span> and the javascript is document.getElementById('cell1').innerText = 'Tenelol'; ...
1
vote
1answer
92 views

why can't i get All text within this xpath in this page?

here is the url and xpath . url : http://product.dangdang.com/product.aspx?product_id=21026883&ref=book-01-E1 xpath: //span[@class='detail_all'] doc.SelectSingleNode(xpath).innertext just can't ...
1
vote
1answer
269 views

Google Maps API geocoding

I'm using Google Maps API geocoding to turn an address into a location on the map. I have it set up as: var address = document.getElementById("address").innerText; I have my address div set up as ...
1
vote
3answers
444 views

How to get element by innerText

How to get tag in html page, if I know what text tag contains. E.g.: <a ...>SearchingText</a>
1
vote
3answers
1k views

write innertext in xml file

How do i write something in the innertext of my xml file i am able to read the particualar tag from the file like this: protected void Page_Load(object sender, EventArgs e) {// this is to read ...
0
votes
2answers
23 views

InnerText when using XMLDocument removing carriage returns?

I am attempting to figure out why some text apparently doesn't have any carriage returns in it, even though it looks like it does. I am wondering if calling innerText when Xpath'ing through a ...
0
votes
1answer
40 views

Finding TD Innertext, can this be simplified?

So I have a large table (701-ish rows, 19 columns). I need to extract the innertext in each td, and then I write it to a csv. The problem is, this takes forever. Doing just 100, takes 32 seconds. This ...
0
votes
2answers
62 views

Breaking up XML string in C#

I have got an XML node called 'structNumber' which has data similar to '4.2' I select the node using: XmlNode xnChapNr = xDoc.SelectSingleNode("//./structNumber"); And at present I am displaying ...
0
votes
1answer
254 views

document.getElementById().innerText in Chrome

Quick Cross Browser JS question, when setting the value of a textbox: document.getElementById("balanceText").innerText = "111"; and document.getElementById("balanceText").value = "111"; Both ...
0
votes
1answer
353 views

Replacing in inner Text in open xml element?

I'm using open xml SDK 2.0 and i'm kind off new to this. I have actually created a quickpart (containg content control) in my word 2007 document named "hello.docx". Now I need to copy the quickpart ...
0
votes
0answers
110 views

Using innerText property of an Element object of XML

I have been developing a web application with FF and Chrome and I never expected that it would malfunction this bad with IE. I had a problem using textContent property of an Element from XML. I found ...
0
votes
0answers
121 views

inner text of an XElement (line ending problem)

i don't understand why this line works(retrieve the text with all the line breakings): textBox1.Text = string.Join("\r\n", doc.Descendants("dos").Single().Value.Split("\r\n".ToCharArray())); this ...
0
votes
1answer
55 views

How to read multiple CodeTables within XML Form

I have multiple Code Tables at the bottom of the XML that I am processing and I would like to lookup a code that comes from the top portion of the XML and get the CodeText from a table at the bottom ...
0
votes
1answer
271 views

Ajax document.getElementById in innerHTML doesn't work

function showSchedule() { if (request.readyState == 4) { if (request.status == 200) { document.getElementById("content").innerHTML = request.responseText; /* put ...
0
votes
1answer
311 views

Avoid the carriage return when writing InnerText in xml elements using System.Xml.XmlWriter

I'm using XmlWriter to save an XmlDocument in .Net. However all the elements that have InnerText are written with surrounding carriage return characters. I tried using XmlWriterSettings to avoid the ...
0
votes
1answer
814 views

WebBrowser Control - Document.Body.InnerText Problem

Can somebody please help me fix my code.? I can't see where I'm going wrong. It just doesn't do what it should be doing. It should read a file line by line (every line contains 1 url), and then ...
-1
votes
1answer
53 views

change XML innertext value on server with c# [closed]

Possible Duplicate: write XML value on the server with c# i've an xml file loaded on a webfolder,this file contains a tag: <mytag>yes</mytag> I've try to change tag content ...
-5
votes
2answers
571 views

How do I remove HTML from the SAS URL access method?

What is the most convenient way to remove all the HTML tags when using the SAS URL access method to read web pages?