MemCached for .net Developers
Hi friends, In this article I would like to share some useful information about MemCached for Dotnet Developers. MemCached is a distributed caching system and Simply put, it is nothing but, memory spread across multiple servers. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times database is accessed.
Read More Add your Comment
Calling Silverlight Method using JavaScript in Asp.net
Hi Folks...
Today, I am going to explain the topic "Calling Silverlight Method from JavaScript ". Before you are doing this example, check your Visual Studio has System.Web.Silverlight dll references other wise you need to add this reference in your application references. click here to download the System.Web.Silverlight.dll. Now let's take each of these steps one by one.
Read More Add your Comment
JQuery pagination in asp.net
Note: If you want to bind the records form data base, then replace the array with db details.
Now go to explanation:
Read More Add your Comment
Print HTML Page Using JavaScript
Hi Friends, In this article i would like to share how to print the current web page using javascript.
<html>
<head><title>print this page using javascript</title>
</head>
<body>
<a href="JavaScript:window.print();">Print this page</a>
</body>
</html>
<html>
<head><title>print this page using javascript</title>
</head>
<body>
<a href="JavaScript:window.print();">Print this page</a>
</body>
</html>
Click here to print my blog
Thank's
www.pioneerscode.com
Read More Add your Comment
Most frequently asked interview questions
Hi friends, most of interviews asking these question only. If you prepare well then you got the job.
1) Explain your project? ---Should explain your project minimum 30min.
2) Explain difference frameworks in .net?
3) What is the D/B interface and abstract and explain?
4) What is use of private and static constructors and where u can use?
5) What is Reflection?
6) What is D/B Shared and Private Assemblers?
7) What is the indexer and explain?
8) What is the uses of Lambda expressions ?
Read More Add your Comment
Difference between delete and truncate commands in sql
Hi friends,In this article i would like to explain delete and trncate commands.
Delete:
a) It is DML command and speed is slow.
b) Remove rows one by one and we can use where clause
c) we can rollback and fires trigger.
Truncate:
a) It is DDL command and speed is faster.
b) Remove all rows in one execution and we can't use where clause.
c) We can't rollback and does't fire trigger.
Read More Add your Comment