Properties: just like public member variables, except when they aren’t — Chip’s Tips for Developers Simon says , set my property. Tags: properties outparams csharp vb synergyde fp oop chipstips Progn for Synergy/DE — Chip’s Tips for Developers Just what every Synergy/DE programmer didn’t know that they wanted. Tags: progn synergyde lisp fp Shakespeare: almost certainly a plagiarist | Blog | Futurismic Can I get an “Amen”? Oh wait, somebody alread
http://forum.lessthandot.com/viewtopic.php?f=27&t=6448 For a long time I have had to make web reports for our company that could be exported to excel. This is a fairly easy process. All you have to do is put your report in an HTML table and add the following 2 lines of code: csharp Line number On/Off | Show/Hide | Select all Response. ContentType = “application/ms-excel” ; Response. AddHeader ( “content-disposition” , “attachment; filename=test.xls” ) ; Code is hi