Only one instance of script manager can be added to the page
I’ve got this error when i have ajax toolkit script manager on the master page while at the same time i’ve script manager on the content page. This is the primary cause of this error. The…
I’ve got this error when i have ajax toolkit script manager on the master page while at the same time i’ve script manager on the content page. This is the primary cause of this error. The…
I got this error when i switched the default web server in visual studio to use IIS instead of visual studio integrated web server. To fix this error is by changing the IIS Default Web Site…
I found this problem when i try to do any of httpweb request behind proxy and i got error of “407 proxy authentication required”. Normally your company has its own proxy server and sometimes you want…
I was having a problem in my checkout page, the problem that i had was i’ve got this memberID from the checkout page and it’s being passed to another page via query string. This problem doesn’t…
I found this error on my project. Well i spent around one hour to figure out this problem. People might think that this is some silly error message. The error message i got is “Failed to…
This is the sample of cursor solutions, i will add the explanation a bit later CREATE PROCEDURE AutoSumEventMembers AS SET NOCOUNT ON; /*This stored procedure is used to update the number of players played on the…
It’s a simple thing but might be essential. Sometimes you would like to have a link to your pdf document into a particular page. This is how you can do it. Add “page=” and the page…
This is a function to capture querystring in javascript. I used this javascript to control my menu dynamically. function getQueryString(strParamName){ var strReturn = “”; var strHref = window.location.href; if ( strHref.indexOf(“?”) > -1 ){ var strQueryString…