There are several ways. If your data source is a data set, you can use
XmlDataDocument to transform the data to HTML with an XSL stylesheet. Or,
you can iterate on the rows of the list manually and write pieces of HTML to
a StreamWriter.
Yes and it's easy. Use the System.Diagnostics.Process class, supply it with
the URL as the process executable and be sure to set ShellExecute to true:
using System.Diagnostic;
Process process = new Process();
process.StartInfo.FileName = "file:///C:/mypage.html";
process.StartInfo.CreateNoWindow = false;
process.StartInfo.UseShellExecute = true;
process.Start();
thank you for your suggesiton...but one more thing....how can I start the IE
and start the page with my defined URL...
Dmitriy Lapshin said:
Eric,
There are several ways. If your data source is a data set, you can use
XmlDataDocument to transform the data to HTML with an XSL stylesheet. Or,
you can iterate on the rows of the list manually and write pieces of
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.