Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using itextsharp to generate pdf

 StringWriter sw = new StringWriter();
 HtmlTextWriter hw = new HtmlTextWriter(sw);

string DataString = RenderPartialViewToString("_OrderDetails", model);// generel html string
string EncodedString = Server.HtmlEncode(DataString);//Encoded html string


by which function i can add the encoded string to the pdf with the style (style is embedded on the text)

help will be appreciated :)
thanks
Posted

StringWriter sw = new StringWriter();
 HtmlTextWriter hw = new HtmlTextWriter(sw);
 
string DataString = RenderPartialViewToString("_OrderDetails", model);// generel html string
string EncodedString = Server.HtmlEncode(DataString);//Encoded html string

i just found the solution
it is very simple
hw.write(DataString);
 
Share this answer
 
Dear please look in to the following answer in code project which is accepted as solution.
Hope it should help you

export gridview to pdf format in asp.net[^]
 
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