Click here to Skip to main content
15,878,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all
i want to put an excel spread sheet in my aspx page where a user can enter in it data and then on a specific button take that cell data and use it in the method i want to use

any suggestions..
Posted

You can use GridView Server Control or Jquery Handsontable plugin(Excel like Grid) at client side.
 
Share this answer
 
XML
<IFrame runat="server" id="iframepdf" width="100%" height="550" >
</IFrame>


code Behind:
C#
iframepdf.Attributes.Add("src", "FilePath" & test.xls)


another ways

<iframe src="Test.xlsx" mce_src="/Test.xlsx" width="500px" height="200px"></iframe>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900