December 2015
Improve ASP.Net Website performance using PageAdapter
.
If you are working on a website then there might be a chance to handle a large amount of data on a public site. Generally, we are binding code with Gridview like this: Gridview1.Datasource = dataset;GridView.DataBind(); After that our page…

All about Active Directory with C# Programming
.
In this blog, We will perform operations with Active Directory with C# Programming. Some of the operations such as enabling users, and disabling users. Before moving ahead, We will first understand – What is an Active Directory. What is Active…
All about sp_addlinkedserver syntax
.
sp_addlinkedserver linked 2 servers. Once sp_addlinkedserver query executes, query can be run against these servers. Run below queries one by one to link, to provide login credentials and to access data EXEC sp_addlinkedserver @server=’ServerName’ EXEC sp_addlinkedsrvlogin ‘ServerName‘, ‘false’, NULL, ‘username’, ‘password’…

