Say you want to restrict access to your flash application that is called by your aspx page. That is easy enough by adding the aspx page to your your web.config file’s location/authorization section. But what if you want to pass …
Category: Microsoft Visual Studio
ASP.Net – Missing URL parameter: IterationId’ Error
You get the following error when calling a reporting services report from your ASP.Net web application that passes a parameter on Non-IE browsers using the 2010 ReportViewer control:
Message
Missing URL parameter: IterationId
StackTrace
at Microsoft.Reporting.WebForms.
Microsoft Visual Studio / Active Reports 6 – How to sort your collections using IComparer
Put this class in your solution. Change ‘[object name of your collection]’ to be the name of your object that defines your collection.
Public Class SimpleComparer
Implements IComparer(Of [object name of your collection])
Private _propertyToSort As String
Private _sortOrder As … Microsoft Visual Studio 2010 – How to add recaptcha and have it work with Microsoft’s CreateUserWizard
Let’s say you create a web site, and you want to add recaptcha to the aspx page where clients can sign up for an account. Instead of a custom sign up form, you instead use Microsoft’s CreateUserWizard control. I’ll explain …
Microsoft Visual Studio 2010 – How to Set Up Forms Authentication for Your ASP.NET Web Site
After developing a web site that uses Forms Authentication, you need to create a SQL database that stores the client’s log-in information along with any profiles. The tool that creates the tables in your database that is needed for your …
Microsoft Visual Studio 2010 – How to pre-compile your “Web Site” and FTP only portions of your site to your Host.
You decided to build a “Web Site” and not a “Web Solution”. You proceed to use the PUBLISH utility in Visual Studio and publish your entire site to your host. You later make a change to your Web Site and …
Microsoft Visual Studio 2008 SP1 – IDE crashes while debugging and undocking windows
I had an issue one day that whenever I tried to move some of the windows around in the IDE, as soon as I docked the window somewhere, the IDE crashed.
Why me?
Anyway, I found a fix. Give it …
Microsoft Visual Studio – How to extract characters from a data string
Let’s say you have a string of data from a credit card that you swiped using a credit card swiper device. In the standard formatted string of data that is received into your string variable from the credit card, you …