Code Master - A reference guide for programmer's

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!

Thursday, May 28, 2015

Cursor Example in Sql Server 2008

›
Declare @name nvarchar(max) Declare cur cursor for select username from userdet open cur fetch next from cur into @name ...
Sunday, May 24, 2015

Asp.net C# code for download file

›
protected void DownloadFile(string Path, string FileName) { try { string strURL = Path; WebClient r...
Friday, May 15, 2015

Check all Check boxes in a check box list ASP.NET + Jquery

›
Design <asp:CheckBox ID="checkAllImport" runat="server" AutoPostBack="false" Text="Select All...
Wednesday, April 22, 2015

Sorting rows in a data table C#

›
Create a new DataTable from a DataView that you create from your original DataTable.  Apply whatever sorts and/or filters you want on the ...
‹
›
Home
View web version
Powered by Blogger.