Asp.net Basics : Uploading a file in asp.net using validations (Part 1 of 5)

Posted on Sat 04 January 2014 in ASP.NET • Tagged with ASP.NET, C#

CoverImageASPNetFileUpload


Contents of this 5 part tutorial
Part 1 : Basics of ASP.Net file uploading, uploading a file to a server.
Part 2 : ASP.Net file uploading using EmptyFile Validations.
Part 3 : ASP.Net file uploading using FileSize validation.
Part 4 : ASP.Net file uploading using FileExtension validator.
Part 5 : Complete …


Continue reading

Maintaining Sessions in Asp.net

Posted on Sat 14 December 2013 in ASP.NET • Tagged with ASP.NET, C#

aspnet_sessions

Session is amongst the most important part in creating asp.net applications. It is a variable where you can put data between page requests when the pages are either posting or redirecting to each other. It can contain small amount of data containing string, complex arrays or numbers.

In Asp …


Continue reading

C# Tutorial : Compiling C# Programmes using Notepad

Posted on Thu 05 December 2013 in C# • Tagged with C#, Programming

About C#

C# is a multi-paradigm object oriented language developed by Mircrosoft in the year 2000. C# has its major implementations in dotNet framework, Mono, DotGNU. In this tutorial we will print a simple line "TheGeekyWay.com" using a notepad and C# command line compiler.

In order to continue with …


Continue reading