Skip to main content

Posts

Showing posts from October, 2013

How add .json handler support in IIS 7

 How add .json handler support in IIS 7 : Sometimes we need to create JSON in a text file with extension   .json , however by default IIS 7 or any of the IIS are not configure to handle .json extension. So below is a very simple method to do that. You can apply the method on the root of IIS so .json can be handled by every site or virtual folder in the IIS or just to the specific site. Open IIS Manager Display properties for the IIS Server Click   MIME Types  and then add the JSON extension: File name extension: .json MIME type: application/json Go back to the properties for IIS Server Click on   Handler Mappings Add a script map Request path: *.json Executable: C:\WINDOWS\system32\inetsrv\asp.dll Name: JSON

Tips To Use Google Search Efficiently

20 Tips To Use Google Search Efficiently Millions of people use Google search every day for a variety of reasons. Students use it for school, business people use it for research, and millions more use it for entertainment. Did you know that you may not be using Google search to its full potential? Here are 20 tips and tricks to maximize your search efficiency. 1. Use the tabs The first tip is to use the tabs in Google search. On the top of every search are a number of tabs. Usually you’ll see  Web ,  Image ,  News , and  More . Using these tabs, you can help define what kind of search you need to do. If you need images, use the  I mage  tab. If you are looking for a recent news article, use the  News  tab. It’s rudimentary and most people use the tabs already. If you are not, then it’s highly recommended to get associated with them. They can cut search times dramatically if utilized properly. 2. Use quotes When searching for something specific, try using quotes t

Visual Studio and .NET Framework Glossary

This glossary defines key terms of Visual Studio 2008 and the .NET Framework. .NET Compact Framework A hardware-independent environment for running programs on resource-constrained computing devices. It inherits the full .NET Framework architecture of the common language runtime, supports a subset of the .NET Framework class library, and contains classes designed exclusively for the .NET Compact Framework. Supported devices include personal data assistants (PDAs) (such as the Pocket PC), mobile phones, set-top boxes, automotive computing devices, and custom-designed embedded devices built with the Microsoft Windows CE.NET operating system. .NET Framework An integral Windows component that supports building, deploying, and running the next generation of applications and Web services. It provides a highly productive, standards-based, multilanguage environment for integrating existing investments with next generation applications and services, as well as the agility to solve

How to make youtube like website in asp.net

How to Building a YouTube-like Video Playing Site Using ASP.NET Techniques In this series of articles, we'll try to build a popular YouTube-like video playing website using ASP.NET related techniques. Here is some sample very good links   http://dotnetslackers.com/articles/aspnet/Building-a-YouTube-like-Video-Playing-Site-Using-ASP-NET-Techniques1.aspx http://dotnetslackers.com/articles/aspnet/Building-a-YouTube-like-Video-Playing-Site-Using-ASP-NET-Techniques2.aspx http://dotnetslackers.com/articles/aspnet/Building-a-YouTube-like-Video-Playing-Site-Using-ASP-NET-Techniques3.aspx http://ramakrishnapathuri.blogspot.in/2013/09/how-to-play-youtube-video-in-your.html  

Beginners guide to responsive web design

Beginner’s Guide to Responsive Web Design Over the past year, responsive design has become quite the hot topic in the web design community. If all the buzz has you feeling like Rip Van Winkle waking up in the 21st century, this summary will help you catch up with the times. Almost every new client these days wants a mobile version of their website. It’s practically essential after all: one design for the BlackBerry, another for the iPhone, the iPad, netbook, Kindle — and all screen resolutions must be compatible, too. In the next five years, we’ll likely need to design for a number of additional inventions. When will the madness stop? It won’t, of course. In the field of Web design and development, we’re quickly getting to the point of being unable to keep up with the endless new resolutions and devices. For many websites, creating a website version for each resolution and new device would be impossible, or at least impractical. Should we just suffer the consequences of l

How to remove rows from GridView using jQuery in asp.net

In this post, I will show you how to remove any row in gridview using jQuery. The task is pretty simple. One need to bind the click event with every tr which has only td not th and on click of event remove the clicked row.  Previous Post  I was Explained about the    jQuery - Allow Alphanumeric (Alphabets & Numbers) Characters in Textbox using JavaScript  ,  Fileupload show selected file in label when file selected  ,  Check for file size with JavaScript before uploading ,   Show jQuery UI Dialog Popup Window from Server Side ( Code Behind ) in ASP.Net ,   How to use the window.open()  method  ,   CONFIRMATION BOX WITH YES NO BUTTONS USING AJAX MODAL POPUP EXTENDER IN ASP.NET See below jQuery code. $(document).ready( function () {    $( "#<%=gdRows.ClientID%> tr:has(td)" ).click( function () {       $( this ).remove();    }); }); Aha..How simple it is..Isn't it? But it would be nice if we show the remove row effect using

CONFIRMATION BOX WITH YES NO BUTTONS USING AJAX MODAL POPUP EXTENDER IN ASP.NET

Here  I am explained with an example , how to built a confirmation box (confirm box) with Yes , No Buttons or Options using AJAX Control Toolkit ModalPopupExtender control Modal Popup in ASP.Net In this article, I will explain how to use ASP.Net AJAX Control Toolkit ConfirmButtonExtender with ModalPopupExtender Modal Popup in order to style the ConfirmButtonExtender dialog and also to make it look same in all browsers. Previous Post  I was Explained about the   jQuery - Allow Alphanumeric (Alphabets & Numbers) Characters in Textbox using JavaScript  ,  Fileupload show selected file in label when file selected  ,  Check for file size with JavaScript before uploading , Show jQuery UI Dialog Popup Window from Server Side ( Code Behind ) in ASP.Net , How to use the window.open()  method   By default the Confirmation Box displayed in Internet Explorer as follows In the following example I will make use of a dummy Button with Confirmation Box using ConfirmButtonExte