Skip to main content

Posts

Zip file or folder

Zip file or folder using C# Nice post by David Ribeiro. While you're developing C# applications, you may need to perform some specific or special operations, such as zipping files to download, or sending an e-mail with a zip file attached, or performing a backup. This article proposes a solution for you to zip files and/or folders, respecting the whole tree of a folder, without the need to buy third-party solutions.

Join Zurker to become a share holder for free

hey guyz.As u already know that facebook CEO and founder Mark Zukerburg has stolen the idea of facebook from two twin brother in Harvard University in 2001. Later on they complaint and got 65 million dollar in 2007 in 2009 they started a new project (ZURKER) and launched the beta version in Dec 2011. U can join it now and become a share holder of this website. This rocking feature of share is added by them. Totally free, new features than facebook and google+ It will rule the future definitely. Join today and become share holder now from India.. Facebook worth 50 billion today but its users getting 0%. So this new idea is invoked by the twin.   click thi link

Updatepanel with fileupload control

Updatepanel with fileupload control   If we use fileupload control to submit any file on our aspx page which having UpdatePanel control on it then if we click on submit button it will give you error & hasfile false & get null exception. To resolve this problem just add below code on aspx page : <Triggers> <asp:PostBackTrigger ControlID="btnSubmit" /> </Triggers> Hope this will help you... Regards, Gajanan

SQL query to get cumulative sum of column

SQL query to get cumulative sum of column select Idcolumn, numericalcolumn, (select max(numericalcolumn)+numericalcolumn                                                     from  tblAnnexure                                                     where    tblAnnexure.Idcolumn< Ann.Idcolumn) as CumulativeSum         from    tblAnnexure Ann