Save/Upload files in folder and download files from folder in asp.net

Save/Upload files in folder and download files from folder in asp.net

To implement this first design table in your database like below to save file details in database. Column Name Data Type Allow Nulls Id int(set identity property=true) No FileName varchar(50) Yes FilePath varchar(50) Yes Now create new website after that right click on your website and add new folder and give name as Filesbecause here I am using same name for my sample if you want to change folder name you need to change the Files folder name in your code behind also After that design your aspx page like this Save and Download Files from file system
3-Tier Architecture in asp.net using C# with Crude Operations

3-Tier Architecture in asp.net using C# with Crude Operations

3-Tier Architecture in asp.net using c# 3-Tier architecture consists of 1) UI or Presentation Layer 2) Business Access Layer or Business Logic Layer 3) Data Access Layer Presentation Layer Presentation layer consists of pages like .aspx or desktop based form where data is presented to users or getting input from users. Business Logic layer or Business Access Layer Business logic layer contains all of the business logic. Its responsibility is to validate the business rules of the component and communicating with the Data Access Layer. Business Logic Layer is the class in which we write functions that get data from Presentation Layer and send that data to database through Data Access Layer.
Handling JSON returned from ASP.NET Web Services with JQuery

Handling JSON returned from ASP.NET Web Services with JQuery

There appear to be many articles showing how to use jQuery with ASP.NET Web Services around, but the vast majority of them illustrate the use of PageMethods that return a single value - typically "Hello World!" or the current date and time. Not much use in the real world, where you may more often need to call a service that returns a collection of complex objects. Here are a couple of examples that look at playing with more than just simple values. Follow Two Steps for Implementation Step 1: Add below section to Head Tag
Custom TextEditor with the Help Jquery in Asp.net

Custom TextEditor with the Help Jquery in Asp.net

Follow two steps for implementation Step 1: Add below section to Head Tag