Sat. Feb 7th, 2026
For js file add in script manager or proxy manager <asp:ScriptManagerProxy ID=”ScriptManagerProxy1″ runat=”server”> <Scripts> <asp:ScriptReference Path=”~/Scripts/jqueryTooltip.min.js” /> <asp:ScriptReference Path=”~/Scripts/AnchorPosition.js” /> </Scripts> </asp:ScriptManagerProxy> Within the page’s... Read More
Google + Icon 1 min read
<html> <head> <title>+1 demo: Basic page</title> <link rel=”canonical” href=”http://www.example.com” /> <script type=”text/javascript” src=”https://apis.google.com/js/plusone.js”> </script> </head> <body> <g:plusone></g:plusone> </body> </html>... Read More
Web-config setting Put Below System.webserver <system.webServer> <modules runAllManagedModulesForAllRequests=”true”/> <handlers> <add name=”MSCaptcha” verb=”GET” path=”CaptchaImage.axd” type=”MSCaptcha.CaptchaImageHandler, MSCaptcha”/> </handlers> </system.webServer> Put in http handler in system.web <httpHandlers> <add verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaImageHandler,... Read More