animelover72
New member
- Joined
- Dec 13, 2009
- Messages
- 1
- Programming Experience
- Beginner
Hi,
I currently have a button which converts the current asp.NET page I'm on into an excel sheet. This is the code for it :
The data that i want to use is in cell C5.
How can i extract that value?
any suggestions welcomed ^^
I currently have a button which converts the current asp.NET page I'm on into an excel sheet. This is the code for it :
VB.NET:
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)
recordsSearch.visible = false
Button1.visible = false
Page.EnableViewState=False
Response.ContentType="application/vnd.ms-excel"
The data that i want to use is in cell C5.
How can i extract that value?
any suggestions welcomed ^^