Bugs: Menu Control does not work on Safari and Chrome browser
Here’s a code for fixing this known issue on the Safari and Chrome browsers If (Request.UserAgent.IndexOf("AppleWebKit") > 0) Then Request.Browser.Adapters.Clear() End If
View ArticleError: The installer was interrupted [AppName] could not be installed
Installing a .net application on different platforms would be a headache if you are not familiar with every details on how it work. One of the error more often happened is the “The Installer was...
View ArticleHow to maintain aspx page position
When working with multiple forms in one page, sometimes you want to stay in the current position after submitting the form. To do this you have options; MaintainScrollPositionOnPostback set to true –...
View ArticleError:There is a duplicate...
Error like this is usually occurs in IIS after deploying a working website (local). In my case, this error usually appears when I use a higher version of .Net Framework in IIS than the .Net Framework...
View ArticleHow to make the CalendarExtender show in front of all controls
Just add the style in the page. <style type="text/css"> .ajax__calendar_container { z-index: 1000; } </style>
View ArticleError: The provider did not return a ProviderManifestToken string error
I started ASP.NET MVC programming with MS SQL SERVER 2008 database, just I ran the web project I got this error. In my case, i figured out the problem causing this error, I entered a wrong password on...
View ArticleError: cs0012: The type ‘System.Data.Objects.DataClasses.EntityObject’ is...
It’s my first time in web development using ASP.NET MVC and when trying to run the sample web app that I was created. It was unfortunate that I received this error. I did a couple of research on this...
View ArticleJquery won’t work after partial postback in ASP.NET
This happens because the UpdatePanel executes a partial postback and the DOM for elements are destroyed. To address this issue, you can use pageload() event. Read More
View ArticleHow to determine if the request is partial or full postback in asp.net
Sometimes, it is necessary to know if the page was requested through AJAX (partial) or full postback. To determine which types of request has been made, you have to access the “ScriptManager”, to do...
View Article