Seed value in SQL Server
SyntaxDBCC CHECKIDENT ('tablename', RESEED, seedvalue);
Example DBCC CHECKIDENT ('[Prices]', RESEED, 4747030);
Dotnet, DotnetCore, Azure, C#,VB.net, Sql Server, WCF, MVC ,Linq, Javascript and Jquery
21 November 2018
28 April 2018
Steps to create CSS and Map file from CSS Less File
Steps to create CSS and Map file from CSS
Less File
Install latest Node JS - Node Js Installation, Go to command prompt and run
Go to Command Prompt and move to less file folder that we are going to create
For e.g., I am going to change HelloWorld [Less File]
In Command prompt go to C:\Project\CSS
Install latest Node JS - Node Js Installation, Go to command prompt and run
npm install less,
Now less installed successfullyGo to Command Prompt and move to less file folder that we are going to create
For e.g., I am going to change HelloWorld [Less File]
In Command prompt go to C:\Project\CSS
Run following Command in Command Prompt
lessc HelloWorld.less HelloWorld.css --source-map=HelloWorld.css.map
–verbose
Now CSS and Map file is generated in the respective folder.
Subscribe to:
Posts (Atom)
Implementing OAuth validation in a Web API
I mplementing OAuth validation in a Web API Implementing OAuth validation in a Web API using C# typically involves several key steps to sec...
-
ViewBag, ViewData, TempData and View State in MVC ASP.NET MVC offers us three options ViewData, ViewBag and TempData for passing data from...
-
// Export Datatable to Excel in C# Windows application using System; using System.Data; using System.IO; using System.Windows.Forms; ...