When building software in C# and .NET we need to create secure codes to make sure that the software is running well. Here are some keys steps to implement secure code:
Input validation. Always validate user input to prevent attacks like SQL injection and cross-site scripting (XSS).
using System.Text.RegularExpressions;
string userInput = GetUserInput();
if (!Re...
[More]
If you are new in .NET web application development, you might want to consider using ASP.NET web forms. However, .NET has several options to choose from. Today we will discuss ten questions that you might be asked for ASP.NET?
is asp.net web forms still life? OFF course! asp.net web forms are great for newbie developer, you can learn here ASP.NET Web Forms | Microsoft Learn
when i choose ...
[More]