Click here to Skip to main content
15,911,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

i should open the file that it contained by blobmail in windows live mail, but i cant. so what i should do for this
here is my code :

tablecontainer is a datatable object

VB
Response.Clear()
                    Response.ClearHeaders()
                    Response.ContentType = "text/html"
                    Response.AddHeader("Content-Disposition", "attachment; filename=" & filename)
                    Response.AddHeader("Content-Length", TableContainer.Rows(0).Item(0).Length.ToString())

VB
Response.OutputStream.Write(blobMail, 0, blobMail.Length)
                   Response.Flush()
                   Response.Close()
                  Response.End()
Posted

1 solution

HI Friends,

I have solved the workflow email, but after open the email in windows live mail, still the page is loading.... how can i stop this. help me

thanks in advance

Velsamy A
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900