Hi Friends,
Is it Possible to write the contents of a webpage to an XML file using c#.net.
A sample code snippet will be of great help.
Also, i want to know how to read only those contents, from a text file that begins with a particular string ex: <div class=std>...
eg:
.....
....
<div class='std'>Hel lo</div>
....
<div class='std'>hai </div>
...
so that the extracted contents will be like the one below.
<div class='std'>Hel lo</div>
<div class='std'>hai </div>
thanks in advance for the help.
jai
Is it Possible to write the contents of a webpage to an XML file using c#.net.
A sample code snippet will be of great help.
Also, i want to know how to read only those contents, from a text file that begins with a particular string ex: <div class=std>...
eg:
.....
....
<div class='std'>Hel lo</div>
....
<div class='std'>hai </div>
...
so that the extracted contents will be like the one below.
<div class='std'>Hel lo</div>
<div class='std'>hai </div>
thanks in advance for the help.
jai
Comment