Export tables,
div, Grids and any to Excel and PDF in asp.net c#
àWhile
exporting these designs with out images
it will working fine
à If
it having images means you need to give the absolute path for the image URL then
only it will work
Check this
blog
http://lokeshasp.blogspot.com/2014/10/how-to-save-image-to-folder-from-data.html
Excel Export
protected void
imgexcel_Click(object sender, ImageClickEventArgs e)
{
Response.Clear();
Response.AddHeader("content-disposition",
"attachment;filename=Suppliers.xls");
Response.Charset...
Wednesday, October 8, 2014
How to save the Image to folder from data base in asp.net
How to save
the Image to folder from data base in asp.net
1) By using this method getting the image bytes and
save to the folder
public void
SaveImageToFolder()
{
try
{
DataTable dt = new DataTable();
byte[]...
Subscribe to:
Posts (Atom)