Saturday, 21 March 2015

Show PDF file In iframe using asp.net c#

HTML CODE

 <tr>
                <td style="height: 450px; width: 630px; background-color:azure">
                    <iframe width="630" height="840" id="displayRate" visible="false" runat="server"></iframe>
                </td>

            </tr>


C# CODE

        if (DropDownList1.SelectedValue == "AIR")
        {
            if (DropDownList2.SelectedValue == "13")
            {
                displayRate.Visible = true;
                displayRate.Attributes["src"] = "plans/AIRCEL/Andhra_Pradesh_&_Telangana.htm";
            }
}

No comments:

Post a Comment