problem in display content of one page to another page?
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy
Join MindStick Community
You have need login or register for voting of answers or question.
Amit Singh
03-Dec-2010we use the literal control to show the content
we read the content by stream reader
example
string path = Server.MapPath("~/") + "/Default.aspx";using (StreamReader reader = File.OpenText(path))
{
string fileContents = reader.ReadToEnd();
this.Literal1.Text = fileContents;
}
check this example