Quantcast
Channel: Powertips » ASP.Net
Browsing latest articles
Browse All 10 View Live

Error control ”of type ‘GridView’ must be placed inside a form tag with...

Go here

View Article


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 Article


Error: 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 Article

How 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 Article

Error: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 Article


How 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 Article

Error: 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 Article

Error: 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 Article


Jquery 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 Article


How 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
Browsing latest articles
Browse All 10 View Live