Showing posts from May, 2016

Start Index No With 1 Sql Query Reseed Auto increment

DBCC CHECKIDENT ('TabelName', RESEED, 0);

Website Testing Site (Responsive)

1. http://mobiletest.me 2. http://browsershots.org/ 3. http://quirktools.com 4. http://www.responsinator. com/

Handle Page not Found in Dot net 404 with webconfig

<configuration>     <system.web>       <compilation debug="false" strict="false" …

Generate Random Number in SQL Numeric and Password / String

Random Number SELECT ABS(CHECKSUM(NewId())) % 10000 AS [NewID] SELECT ABS(CAST(CAST(NEWID() AS VARBINARY) AS INT…