Posted on: 6/1/2014 1:58:58 PM | Views : 360

I am uploading a excel file using file upload control and storing the files in a database. Now I want to display these uploaded excel files within a gridview and on selecting a particular file it should display within a aspx page. Please guide me how can I do this? This is my aspx page-
<table border="1" cellpadding="1" cellspacing="1"> <tr> <td><span style="color:Black;font-family:Arial;font-size:medium;">Enter PO Number:</span></td> <td> <asp:TextBox ID="txtpon" runat="server" BorderColor="Black"></asp:TextBox></td> </tr> <tr> <td><span style="color:Black;font-family:Arial;font-size:medium;">Upload PO Chart:</span></td> <td> <asp:FileUpload ID="FileUpload1" runat="server" /></td> ...

Go to the complete details ...