Click here to Skip to main content
16,013,642 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: retrieve deleted record Pin
Imran Khan Pathan1-Aug-07 19:52
Imran Khan Pathan1-Aug-07 19:52 
GeneralRe: retrieve deleted record Pin
Deepak the Cool1-Aug-07 20:01
Deepak the Cool1-Aug-07 20:01 
GeneralRe: retrieve deleted record Pin
Sonia Gupta1-Aug-07 20:12
Sonia Gupta1-Aug-07 20:12 
GeneralRe: retrieve deleted record Pin
T.EDY1-Aug-07 20:24
T.EDY1-Aug-07 20:24 
AnswerRe: retrieve deleted record Pin
N a v a n e e t h1-Aug-07 20:56
N a v a n e e t h1-Aug-07 20:56 
GeneralRe: retrieve deleted record Pin
Imran Khan Pathan1-Aug-07 21:42
Imran Khan Pathan1-Aug-07 21:42 
QuestionHow do i get the HTML copy of the page at runtime Pin
Amit.Amit.Amit...1-Aug-07 19:06
Amit.Amit.Amit...1-Aug-07 19:06 
AnswerRe: How do i get the HTML copy of the page at runtime Pin
Deepak the Cool1-Aug-07 19:30
Deepak the Cool1-Aug-07 19:30 
using System.Configuration;
using System.Web;
using System.Net;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text.RegularExpressions;
using System.Web.Services.Protocols;
using System.Text;



protected void Button1_Click(object sender, EventArgs e)
{
string abc = "http://www.mywebsite.com";
WebClient webClient = new WebClient();
string strUrl = abc;
byte[] reqHTML;
reqHTML = webClient.DownloadData(strUrl);
UTF8Encoding objUTF8 = new UTF8Encoding();
TextBox1.Text = objUTF8.GetString(reqHTML);
}

lets try this above code......
and get this value and save as it into clients computer through Flie Stream..

Smile | :)

Deepak

Smile a Lots,Its Costs Nothing

GeneralRe: How do i get the HTML copy of the page at runtime Pin
Amit.Amit.Amit...1-Aug-07 19:56
Amit.Amit.Amit...1-Aug-07 19:56 
GeneralRe: How do i get the HTML copy of the page at runtime Pin
Deepak the Cool1-Aug-07 20:05
Deepak the Cool1-Aug-07 20:05 
GeneralRe: How do i get the HTML copy of the page at runtime Pin
Sonia Gupta1-Aug-07 20:07
Sonia Gupta1-Aug-07 20:07 
GeneralRe: How do i get the HTML copy of the page at runtime Pin
Sonia Gupta1-Aug-07 20:18
Sonia Gupta1-Aug-07 20:18 
GeneralRe: How do i get the HTML copy of the page at runtime Pin
Deepak the Cool1-Aug-07 21:13
Deepak the Cool1-Aug-07 21:13 
GeneralRe: How do i get the HTML copy of the page at runtime Pin
Amit.Amit.Amit...1-Aug-07 22:15
Amit.Amit.Amit...1-Aug-07 22:15 
GeneralRe: How do i get the HTML copy of the page at runtime Pin
Deepak the Cool1-Aug-07 22:54
Deepak the Cool1-Aug-07 22:54 
QuestionFile System path to URL Pin
eggie51-Aug-07 18:43
eggie51-Aug-07 18:43 
AnswerRe: File System path to URL Pin
Parwej Ahamad1-Aug-07 19:35
professionalParwej Ahamad1-Aug-07 19:35 
QuestionFeedback form handler Pin
aurorae1281-Aug-07 18:37
aurorae1281-Aug-07 18:37 
AnswerRe: Feedback form handler Pin
Christian Graus1-Aug-07 18:51
protectorChristian Graus1-Aug-07 18:51 
AnswerRe: Feedback form handler Pin
aurorae1281-Aug-07 20:15
aurorae1281-Aug-07 20:15 
Questioncrystal report Pin
kmanisha1-Aug-07 18:18
kmanisha1-Aug-07 18:18 
QuestionError: Dropdown list Pin
A.Muthunagai1-Aug-07 18:02
A.Muthunagai1-Aug-07 18:02 
AnswerRe: Error: Dropdown list Pin
Christian Graus1-Aug-07 18:32
protectorChristian Graus1-Aug-07 18:32 
GeneralRe: Error: Dropdown list Pin
A.Muthunagai1-Aug-07 20:10
A.Muthunagai1-Aug-07 20:10 
AnswerRe: Error: Dropdown list Pin
Nand Kumar Das2-Aug-07 2:18
Nand Kumar Das2-Aug-07 2:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.