I have a pdf file in an iframe and i want to check the pdf file to know the names of fields to allow user to fill this fields from textboxes.
This is my iframe and textbox for example:
<iframe id="frmDoc" runat="server" style="width:800px;height:1200px;"></iframe>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
and this is the code to show the pdf in the iframe:
protected void Page_Load(object sender, EventArgs e)
{
frmDoc.Attributes["src"] = "~/admin/minufia/6 نموذج إحصائي رقم.pdf";
}
Please help me to solve this problem.