asp.net - Export datatable value to word using c# -
i new asp.net , need create project. requirement have table store data. main table. under each id have separate table:
msg_id src dest 701 radar msc 702 msc radar msg_id message_size mgs_desc 701 256 pfm_load
like continues... have 3 dropdown lists. 1st 1 msg_id
, 2nd src
, 3rd dest
. have submit button user can select 1 of dropdown lists , corresponding table should displayed in ms-word.
you need create report of data in .net
use enablerenderextension( "html4.0", "ms word" );
purpose.
then have export report word file.
follow link:
http://www.codeproject.com/articles/35225/advanced-report-viewer
or
step step approach:
http://www.accelebrate.com/sql_training/ssrs_2008_tutorial.htm
hope helpful.
Comments
Post a Comment