Upgrade Classic ASP to .NET You know the problem well. You have a critical application—maybe one with 120,000 Lines of Code in Classic ASP—and it relies entirely on a single, indispensable hero on your team. You recognize that this reliance isn’t sustainable; it’s a massive talent risk and a catastrophic single point of failure. You’re […]
Tag: Classic ASP
The Lines of Code Tax: How Legacy ASP is Costing You Security and Talent
Are you still running critical applications on Classic ASP? If so, you’re not alone, but you are shouldering a silent, growing burden. Many organizations find themselves trapped, managing systems with hundreds of thousands of Lines of Code written decades ago. As one developer recently shared, “120,000 Lines of Classic ASP” can become a single point […]
Access to SQL Migration
We’ve helped many clients move their data into the future. If you’re a business using an Access database and facing performance, security, or scalability issues, it’s time to consider a modern solution. Our team specializes in porting legacy databases to more robust platforms, with a primary focus on Microsoft SQL Server. Why Port from Access […]
Classic ASP – Clean and Readable Code During Modernization
Modernizing your Classic ASP application into .NET is more than a technology upgrade; it’s an opportunity to prioritize clean and readable code. Why is this so critical? To ensure a successful rewrite, involve original developers in the transition. Their insights can guide the new system’s design while ensuring essential knowledge is passed on. Comprehensive documentation […]
Classic ASP Expert – Choosing the Right Team for Your Rewrite
Rewriting a Classic ASP application into .NET is a complex but rewarding task. The right team can make the transition seamless. Here’s what to look for: By partnering with experts, you’ll transform your legacy application into a modern solution, ensuring longevity and success.
Why Modernize Your Classic ASP Applications?
Classic ASP, or Active Server Pages, was a groundbreaking technology introduced by Microsoft in 1996. While it played a crucial role in the evolution of web development, Microsoft ended its support on December 31, 2021, leaving businesses relying on it to face challenges like: Modernizing to .NET enhances your application’s performance, scalability, and security. Transitioning […]
TLS 1.2 with Classic ASP
Looking at Twillio docs Using Twilio with Classic ASP and VBScript we implanted Twillio SMS API We encountered the following error message: The TLS versions on the server appreared to be causing the error TLS 1.0, TLS 1.1 and TLS 2.0 We used https://www.ssllabs.com/ssltest to get the current TLS Configuration. The results showed TLS 1.0 […]
Classic ASP Function to Set Dynamic Image (1 of 2)
I reviewed some recent client Classic ASP code and found a 4 level deep branching of an IF statement. Reading the code, its intent is to look at the object type and return an icon representing the type. I try to stay away from IF statements altogether but using a SINGLE if statement is something I do […]
Adding Custom Properties to Objects in Classic ASP
I the last blog post Converting Recordset into Objects in Classic ASP we created a public function initialize(rs) which takes in a single row from the database and creates a single class object account. Our goal is to add a new property named fullname where we combine firstname and lastname We will update the public function initialize(rs) as follows: […]
Converting Recordset into Objects in Classic ASP
Now that you know how to create a Class and Objects in Classic ASP, we will look at Converting Recordset into Objects in Classic ASP. Lets create a Class account which has several properties. I usually use the database table account and copy the model so the Class matches the database model Class account public […]