Wednesday, May 28, 2014

Creating the Zooming the Image while mouse hover Using Jquery like EBye Adverticements sites in Asp.net C#

Step 1:- Add this line <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script> <script src="js/jquery.elevatezoom.min.js" type="text/javascript"></script> To Make jquery.elevatezoom.min.js file Explanation is in the below Step 2:- Add this Full Code <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">    ...
Read More »

IIS Error HTTP Error 500.19 - Internal Server Error with Error Code 0x80070005

Step 1:- Right Click the project in the IIS  àEdit Permissions àSecurity Tab àClick Edit àAdd àType “EveryOne” àCheckName àok àApply All à ok àRefresh the IIS and check Good work solved the Error for me Any Error Please check this Link http://support.microsoft.com/kb/942055 ...
Read More »

How to set the default IE Compatibility Mode from Asp.Net Website

Step 1:- Add the tag in all pages and login page and Master Page <meta http-equiv="x-ua-compatible" content="ie=8"> You Have to change based of which version you want content="ie=8"> for IE 8 content="ie=9"> for IE 9 <head runat="server">     <title></title>     <meta http-equiv="x-ua-compatible" content="ie=8"> </head> Step 2:- Add this code in the webconfig file <configuration>  <system.webServer>         <httpProtocol>             <customHeaders>         <clear...
Read More »