Active Reports 6 – Enable Script Debugging and force a breakpoint using Debug.Assert(False) in a sub report

In order to debug active reports in the Visual Studio IDE solution, you need to set EnableScriptDebugging = True.

In this example, I want to debug a sub report. When creating a sub report dynamically in the main report that …

Microsoft Visual Studio – ASP.Net Wrox Professional ASP.NET: In C# and vb – Chapter 19 CascadingDropDown Sample Causing Method Error 500

When debugging, the actual error states:

Unable to cast object of type ‘System.Object[]’ to type ‘AjaxControlToolkit.CascadingDropDownNameValue[]’.

After doing much research on this issue, it appears everyone’s resolution was to ensure that you included the ‘<WebMethod(), System.Web.Script.Services.ScriptMethod()> _’ above the public …

Microsoft Visual Studio – ASP.Net How to Access the UserName Textbox of a LoginView Control’s Login Control and Manipulate the FailureText

Let’s say you have your web.config set to allow the user only 3 attempts to get the password correct when logging in. After 3 attempts, the profile table sets the isLockedOut column to ‘True’. You want to display this to …