Click here to Skip to main content
15,922,166 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPanel Pin
KhandelwalA8-Jul-09 1:15
KhandelwalA8-Jul-09 1:15 
AnswerRe: Panel Pin
padmanabhan N8-Jul-09 1:26
padmanabhan N8-Jul-09 1:26 
GeneralRe: Panel Pin
KhandelwalA8-Jul-09 1:29
KhandelwalA8-Jul-09 1:29 
AnswerRe: Panel Pin
himanshu25618-Jul-09 1:52
himanshu25618-Jul-09 1:52 
GeneralRe: Panel Pin
KhandelwalA8-Jul-09 2:03
KhandelwalA8-Jul-09 2:03 
GeneralRe: Panel Pin
KhandelwalA8-Jul-09 19:52
KhandelwalA8-Jul-09 19:52 
QuestionEmbed Excel sheet in web page Pin
samerh8-Jul-09 0:12
samerh8-Jul-09 0:12 
AnswerRe: Embed Excel sheet in web page Pin
Manas Bhardwaj8-Jul-09 0:45
professionalManas Bhardwaj8-Jul-09 0:45 
You can just create a web page (e.g. WebForm1.aspx) in asp.net and put the following code in Page_Load event in code behind page

Response.ContentType = "application/vnd.ms-excel";

string sFile = Server.MapPath("MyExcel.xls");

FileStream fs = new FileStream(sFile, FileMode.Open, FileAccess.Read);

byte[] b = new byte[(int)fs.Length];

fs.Read(b, 0, (int)fs.Length);

fs.Close();

Response.Clear();

Response.BinaryWrite(b);

Response.End();


Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

GeneralRe: Embed Excel sheet in web page Pin
padmanabhan N8-Jul-09 0:54
padmanabhan N8-Jul-09 0:54 
AnswerRe: Embed Excel sheet in web page Pin
Aman Bhullar8-Jul-09 0:56
Aman Bhullar8-Jul-09 0:56 
Questionhidden column Pin
vikas shukla8-Jul-09 0:08
vikas shukla8-Jul-09 0:08 
AnswerRe: hidden column Pin
Abhijit Jana8-Jul-09 0:14
professionalAbhijit Jana8-Jul-09 0:14 
AnswerRe: hidden column Pin
Zafar A khan 8-Jul-09 0:22
professionalZafar A khan 8-Jul-09 0:22 
AnswerRe: hidden column Pin
padmanabhan N8-Jul-09 0:22
padmanabhan N8-Jul-09 0:22 
AnswerRe: hidden column Pin
Gamzun8-Jul-09 2:08
Gamzun8-Jul-09 2:08 
Questionupdateable editable Gridview Pin
dotnetcsharpdev7-Jul-09 23:50
dotnetcsharpdev7-Jul-09 23:50 
AnswerRe: updateable editable Gridview Pin
padmanabhan N8-Jul-09 1:01
padmanabhan N8-Jul-09 1:01 
GeneralRe: updateable editable Gridview Pin
dotnetcsharpdev8-Jul-09 1:08
dotnetcsharpdev8-Jul-09 1:08 
GeneralRe: updateable editable Gridview Pin
Spirits Soft Tech Nology , Dharmapuri8-Jul-09 2:05
Spirits Soft Tech Nology , Dharmapuri8-Jul-09 2:05 
GeneralDont spam Pin
Manas Bhardwaj8-Jul-09 2:28
professionalManas Bhardwaj8-Jul-09 2:28 
Questioncreating a polling system Pin
uglyeyes7-Jul-09 23:32
uglyeyes7-Jul-09 23:32 
AnswerRe: creating a polling system Pin
uglyeyes8-Jul-09 16:49
uglyeyes8-Jul-09 16:49 
QuestionProblem displaying different pdf documents one at a time on an Iframe Pin
LucBite7-Jul-09 23:11
LucBite7-Jul-09 23:11 
Questionremote shutdown Pin
nani66667-Jul-09 23:11
nani66667-Jul-09 23:11 
AnswerRe: remote shutdown Pin
SeMartens7-Jul-09 23:55
SeMartens7-Jul-09 23:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.