Posted on: 6/23/2014 9:09:21 AM | Views : 468

On my asp.net page i am using iframe and setting its source in code behind page.
    <asp:TabPanel ID="tabDocs" Enabled="false" HeaderText="Documents" runat="server">      <ContentTemplate>        <iframe width="100%" height="600" id="frmDocs" frameborder="0" runat="server"></iframe>      </ContentTemplate>     </asp:TabPanel>
Code Behind
     ifrmDocs.Attributes.Add("src", "/xyz.aspx?vType=EmpRpt&vid=" + EmpID.ToString)
How can i refresh TabPanel "frmDocs" after writing file using Response.BinaryWrite(Data)? frmDocs shows the list of uploaded documents. Basically user will click on the create button on main tab which will write a file (will ask user to download it or sa ...

Go to the complete details ...