Backup and Restore
BCS
CAML and LINQ
Content Management
Content Type
Downloads
Errors
Event Receivers
Installation
Interview Questions
JavaScript and jQuery
List and Library
Master Page and Page Layout
Mobile apps
New Features
PowerShell
Product Reviews
SharePoint 2013
SharePoint 2013 Apps
SharePoint...
Wednesday, 29 April 2015
Wednesday, 26 November 2014
How to get data from db and store in array list and diplay it using foreach loop
SqlConnection con = new SqlConnection("Data Source=XXXXX;Initial Catalog=XXXXX;Persist Security Info=True;User ID=XXXXX;Password=XXXXX");
SqlCommand cmd = new SqlCommand();
cmd.CommandText = ("Select * from Employee");
cmd.Connection = con;
try
...
Friday, 14 November 2014
Wednesday, 5 November 2014
What is Caching
It’s nothing but a thought kind of memory. In respect to
asp.net it's the memory of the machine/server from where the source-code is
running. It is the one way which allows storing complex data for reusability.
Now think criteria where clients access an ASP.NET page, there are basically
two ways...
What is ASP.NET State Management? How to manage state in ASP.NET?
State
management is used to keep values across post back event occurs.
There are
two types of state management are available in the ASP.NET.
1) Client based State management
2) Server based State management
Client based
state management
Here I am going to explain about in detail about...
Tuesday, 4 November 2014
sql query interview questions
Write
query to get all employee detail from "EmployeeDetail" table?
SELECT
* FROM [EmployeeDetail]
Write
query to get only "FirstName" column from "EmployeeDetail"
table?
SELECT
FirstName FROM [EmployeeDetail]
Write
query to get FirstName in uppler case as "First Name"?
SELECT
UPPER(FirstName)...