Discussion forum regarding C#.NET
C# supports method overloading, which allows you to create more than one method with the same name, but with a different set of parameters. When you...
An enumeration is a group of related constants, each of which is given a descriptive name. Each value in an enumeration corresponds to a preset...
The .NET Framework ships with three core languages that are commonly used for building ASP.NET applications: C#, VB, and J#.According to Microsoft,...
What is a SQL injection attack? Have any of your websites ever been a victim of a SQL injection attack? Well, one of my sites recently was so...
Hello, I'm sorry for posting a question that is most probably very easy for most programmers. I am trying to learn C# and as much as I've googled...
Consider that we want to create the following XML Document: <?xml version="1.0"? encoding="utf-8"> <!–Xml Document–> <catalog> <book...
C# arrays do not support redimensioning. This means that once you create an array, you can’t change its size. Instead, you would need to create a...
Arrays allow you to store a series of values that have the same data type. Each individual value in the array is accessed using one or more index...
In the past, every language has had its own set of keywords for common math operations such as rounding and trigonometry. In .NET languages, many of...
One of the best examples of how class members can replace built-in functions is found with strings. In the past, every language has defined its own...
C# also provides a foreach loop that allows you to loop through the items in a set of data. With a foreach loop, you don’t need to create an explicit...
This tutorial will show you how to send email from your website using c#.net in plain text or HTML format. Below you will find all the functionality...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication8 { class order {...
This tutorial will show you how to setup a Captcha ("Completely Automated Public Turing test to tell Computers and Humans Apart") for your website’s...
I’ve noticed that there aren’t many tutorials out there that make setting up a member’s login easy for C#.NET. This tutorial will show you how to...
Use this control to limit the display of threads to those newer than the specified time frame.
Allows you to choose the data by which the thread list will be sorted.
Order threads in...
Note: when sorting by date, 'descending order' will show the newest results first.
Forum Rules