Hi ,

I am having two pages namely Main.aspx and View.aspx page. I am having
iFrame to display the inline pdf in Main.Aspx page. The SRC of iframe is
view.aspx page. In load event of view.aspx page, i am loading the content of
document from the database.

View.aspx-Page Load event
------------------------------------------


byte
[] bFileContent;

DB.GetDocContent(iDocID,out bFileContent);

string strDocName = "";

DB.GetDocName(iDocID, ref strDocName);

try

{

if (bFileContent != null)

{

Response.Clear();

Response.ContentType =
"Application/pdf";

Page.Response.AddHeader(
"Content-Disposition", "inline;filename=" + strDocName + .pdf");

Response.BinaryWrite(bFileContent);

Response.Flush();

Response.Close();

}

}catch()

{

}
---------------------------------------------

Now my user wants to edit the inline PDF using the Typewriter function. Now
my problem is, i dont know how to read the edited PDF document and save it
in database.


see the following link:
http://www.eggheadcafe.com/community/aspnet/17/10183194/getting-location-of-iframe-document-in-aspnet.aspx

ie.While click the close button(X) i have to save the content in
correspondng field.

Please giude me to solve this problem.


With Regards,
Senthilvel.S
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

Reply via email to