- DECLARE @TOTALV BIGINT
- DECLARE @InitialValue BIGINT
- SET @InitialValue=1
- SET @TOTALV=12
- WHILE (@InitialValue<=@TOTALV)
- BEGIN
- print @InitialValue
- SET @InitialValue=@InitialValue+1
- END
Subscribe to:
Post Comments (Atom)
Upload valid file in C#
protected bool CheckFileExtandLength(HttpPostedFile HtmlDocFile) { try { Dictionary<string, byte[]...
-
using Microsoft.Win32; using System; using System.Collections.Generic; using System.Management; using System.Net.NetworkInformation; using S...
-
Setting Header Programatically You can also set the cache headers programmatically. This can be useful for generated content and allows m...
-
DECLARE @TableName sysname ='Table name' DECLARE @Result varchar(max) = 'public class ' + @TableName + ' { ' SE...
No comments:
Post a Comment