Question : Store result of web browser in file

Hi,

I want to open an URL in web browser and store the result of it in a file.
I need to loop this and do it thousands time.

So e.g. open internet explorer with a specific URL. store the result in a file. kill internet explorer. all of this thousand time.

Is this possible somehow ?

Answer : Store result of web browser in file

The escape character for a quotation mark (") in VB is a double quotation mark (""). Since you are trying to output HTML, I suggest changing the C# escape for a quotation mark (\") to apostrophes (').

So this line:

"<div style=\"text-align:center;width: 350px;\"><div style=\"font-size: 11px;line-height: 12px;position:relative;z-index:1000;margin:auto;width:140px;\"><a target=\"_blank\" href=\"" + GetAttachmentUrl(Eval("AttachmentName"), Eval("NodeAliasPath")) + "\"><img style=\"border: none;\" src=\"" + GetAttachmentIconUrl(Eval("AttachmentExtension"), null) + "\" alt=\"" + Eval("AttachmentName") + "\" /></a><p>" + ResHelper.GetString("attach.openfile") + "</p></div></div>",

become:

"<div style='text-align:center;width: 350px;'><div style='font-size: 11px;line-height: 12px;position:relative;z-index:1000;margin:auto;width:140px;'><a target='_blank' href='" + GetAttachmentUrl(Eval("AttachmentName"), Eval("NodeAliasPath")) + "'><img style='border: none;' src='" + GetAttachmentIconUrl(Eval("AttachmentExtension"), null) + "' alt='" + Eval("AttachmentName") + "' /></a><p>" + ResHelper.GetString("attach.openfile") + "</p></div></div>",
Random Solutions  
 
programming4us programming4us