Click here to Skip to main content
15,895,656 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Download multiple Xml file Pin
Ravindra Nidhonkar3-Feb-10 21:28
Ravindra Nidhonkar3-Feb-10 21:28 
GeneralRe: Download multiple Xml file Pin
Palash Biswas3-Feb-10 21:31
Palash Biswas3-Feb-10 21:31 
GeneralRe: Download multiple Xml file Pin
<<Tash18>>3-Feb-10 21:59
<<Tash18>>3-Feb-10 21:59 
GeneralRe: Download multiple Xml file Pin
Palash Biswas3-Feb-10 22:07
Palash Biswas3-Feb-10 22:07 
GeneralRe: Download multiple Xml file Pin
<<Tash18>>3-Feb-10 22:26
<<Tash18>>3-Feb-10 22:26 
GeneralRe: Download multiple Xml file Pin
Palash Biswas3-Feb-10 23:19
Palash Biswas3-Feb-10 23:19 
GeneralRe: Download multiple Xml file Pin
<<Tash18>>3-Feb-10 23:34
<<Tash18>>3-Feb-10 23:34 
AnswerRe: Download multiple Xml file [modified] Pin
Palash Biswas3-Feb-10 23:45
Palash Biswas3-Feb-10 23:45 
This will help you much , I think it works fine Big Grin | :-D

Response.ContentType = "text/xml"; 
        Response.AppendHeader("Content-Disposition", "attachment; filename=mmm.xml");
        Response.TransmitFile(Server.MapPath("~/images/mmm.jpg"));
        SqlDataAdapter da = null;
        try
        {
            con = new SqlConnection();
            con.ConnectionString = ConfigurationSettings.AppSettings["DSN"];
            da = new SqlDataAdapter("select * from card_details", con);
            DataSet ds = new DataSet(); da.Fill(ds, "card_details");
            ds.WriteXml(Response.OutputStream);
            Response.End();
        }
        catch (SqlException ex)
        {
            throw new System.Exception("Error -- " + ex.Message);
        }
        catch (Exception exp)
        {
            throw new System.Exception("Error -- " + exp.Message);
        }
        finally
        {
            con.Close(); da.Dispose();
        }


modified on Thursday, February 4, 2010 6:01 AM

GeneralRe: Download multiple Xml file(miodified Full) Pin
Palash Biswas3-Feb-10 23:52
Palash Biswas3-Feb-10 23:52 
GeneralRe: Download multiple Xml file Pin
Palash Biswas4-Feb-10 0:07
Palash Biswas4-Feb-10 0:07 
AnswerRe: Download multiple Xml file Pin
Palash Biswas4-Feb-10 0:01
Palash Biswas4-Feb-10 0:01 
QuestionMail going to Queue folder in the server Pin
Member 42602703-Feb-10 1:43
Member 42602703-Feb-10 1:43 
AnswerRe: Mail going to Queue folder in the server Pin
Abhijit Jana3-Feb-10 19:52
professionalAbhijit Jana3-Feb-10 19:52 
Questionrunning website (asp.net) on 3rd party server. Pin
jeshra2793-Feb-10 0:44
jeshra2793-Feb-10 0:44 
AnswerRe: running website (asp.net) on 3rd party server. Pin
sashidhar3-Feb-10 1:08
sashidhar3-Feb-10 1:08 
QuestionPage Loading with two update panels Pin
Hema Bairavan3-Feb-10 0:40
Hema Bairavan3-Feb-10 0:40 
AnswerRe: Page Loading with two update panels Pin
Pranay Rana3-Feb-10 0:43
professionalPranay Rana3-Feb-10 0:43 
QuestionRe: Page Loading with two update panels Pin
Hema Bairavan3-Feb-10 1:13
Hema Bairavan3-Feb-10 1:13 
AnswerRe: Page Loading with two update panels Pin
Pranay Rana3-Feb-10 1:17
professionalPranay Rana3-Feb-10 1:17 
QuestionSQL Server Express doesn't work Pin
hezi3-Feb-10 0:26
hezi3-Feb-10 0:26 
AnswerRe: SQL Server Express doesn't work Pin
Alaric Dailey10-Feb-10 3:06
Alaric Dailey10-Feb-10 3:06 
GeneralRe: SQL Server Express doesn't work Pin
hezi14-Feb-10 1:41
hezi14-Feb-10 1:41 
GeneralRe: SQL Server Express doesn't work Pin
Alaric Dailey14-Feb-10 4:12
Alaric Dailey14-Feb-10 4:12 
Questionwant to avoid losing data of previous screen Pin
anilaabc3-Feb-10 0:15
anilaabc3-Feb-10 0:15 
AnswerRe: want to avoid losing data of previous screen Pin
m@dhu3-Feb-10 1:37
m@dhu3-Feb-10 1:37 

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.