.Net Mixer

Free Aspnet articles for developers. Contains a lots of case studies & examples during development time.

Statistics

Unique Visitors: 1223

Visitors Out: 1097

Blog Language: English

RSS Feeds for this Blog

Articles

Basic introduction of HTTP Protocol
2012-01-27 11:18:00
At first what is Protocol? Protocol means a way of communication between two or more parties. To connect two parties like client and server at first we need to establish a connection between them and after that we need to start communication in such a way so that anyone can understand each other. To establish a connection we need a special protocol named Transmission Control Protocol/Internet
Basic difference on GET and Post HTTP methods
2012-01-16 11:05:00
Might be this the first interview question by the viva board. Which is very basic and you have to explain clearly. That's why i am trying to write the post "Basic difference between GET and POST method". Basically both method is used for submitting data into server. Read the differences from below: Post Mechanism: 1. GET request is sent via URL. 2. Post request is sent via HTTP request body or
Short description on MIME type
2012-01-08 11:08:00
MIME = Multi-purpose Internet Mail Extensions. This article will explain "What is ENC MIME type". Its a commonly used basic viva/written interview question. MIME type is a standard way of defining file types between HTTP Client and HTTP Server. Without a standard MIME type both client and server can not understand what type of file client received since a file has many extensions like HTML and
Learn Tutorial of Asp.net Page Life Cycle
2011-12-09 12:09:00
When a user send request to the Web server, the page passes a lot of events during initialization and disposal. Generally an Asp.net aspx page contains a lot of server side controls as well as HTML controls & user controls. Most of the developer does not bother the life cycle events. But its not a good practice because to be a good & knowledgeable developer or programmer you have to learn the
The OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction : SQL SERVER ERROR
2011-12-07 12:18:00
In many Sql Server forum i found the error "The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction". That's why i am decided to describe this error with a solution that i have resolved yesterday. One simple solution is Sql Server has a service named "Distributed Transaction" which you need to ON to resolve this problem. But one
Activate your inactive utility folder option task manager
2011-12-07 12:06:00
Sometimes in Windows operating system we did not found some utilities like: 1. Folder Option 2. Task Manager 3. Control Panel 4. System Restore 5. Run Menu 6. Context Menu 7. My Computer 8. Search Option 9. Command Console 10. Registry Editor 11. MS Configure This will happen due to virus attack. Solution: One software named Re-Enable will help you to activate inactive utility as per your
Speed up or keep active the RAM activity
2011-12-07 11:47:00
In using of Windows most of the times system creates page files which will act like virtual memory. But those virtual files may not clear automatically when you shut down the PC or Laptop which slows the RAM speed eventually. You can automatically or forcefully remove or delete the virtual files when shutting down your computer. To do this follow the below steps: 1. Go to Start then Control
Can not delete file Now delete file easily
2011-12-07 11:28:00
In maximum time virus or for other problems like: 1. The file is in use by another program or user 2. The source or destination file may be in use 3. Make sure the disk is not full or write-protected and that the file is not currently in use 4. Cannot delete file: Access is denied You may not delete a file easily. For such type of problem the shortest solution is "FileASSASSIN". FileASSASSIN
Make Regular Expression Checker in 10 minutes using Asp.net C#
2011-05-17 05:12:00
In most of the times we need to make or create a regular expression to find matching patterns from a given string or a file. Many languages support this feature like Javascript and also Asp.net C#. Regular expresion makes our life easy. Few days ago i have done a dataminig project where i found that how much necessary the regular expression is. I understand its power and capability. The developer
Jquery to generate Random Number
2011-05-12 10:55:00
In many forums i found a question "How to generate a Random Number using Jquery?". Its easy to generate a Random number because Jquery provides us builtin Math library function Math.random() to generate the number. To get the output you have to put a number range. Then the the mehod Math.random() will give you a Random Number. You can also use this technique for dice, random image script, or