This is very basic level small user control, in which we can discuss how to create web user control.
To create user controls follow the steps:
- Right click on project
- Click on Add
- Select New Item
- Select Web User Control
- Specify some Name
I have given name to this file as “uploader.ascx” and kept this file under “userControl” for simplicity purpose.
On this page I am having following controls:
1: <INPUT id="fileUpload" type="file" Runat="server" NAME="fileUpload">
2:
3: <asp:label id="lblMessage" runat="server" Width="416px" Font-Size="10" Font-Name="verdana"></asp:label>
4:
5: <asp:button id="btnSave" runat="server" Text="Upload.."></asp:button>
6:
7: At the code behind of above file I am having following function
8:
9: public string uploadFile(string fileName,string folderName)
10:
11: {
12:
13: if(fileName=="")
14:
15: {
16:
17: return "Invalid filename supplied";
18:
19: }
20:
21: if(fileUpload.PostedFile.ContentLength==0)
22:
23: {
24:
25: return "Invalid file content";
26:
27: }
28:
29: fileName = System.IO.Path.GetFileName(fileName);
30:
31: if(folderName=="")
32:
33: {
34:
35: return "Path not found";
36:
37: }
38:
39: try
40:
41: {
42:
43: if (fileUpload.PostedFile.ContentLength<=2048000)
44:
45: {
46:
47: fileUpload.PostedFile.SaveAs(Server.MapPath(folderName)+"\\"+fileName);
48:
49: return "File uploaded successfully";
50:
51: }
52:
53: else
54:
55: {
56:
57: return "Unable to upload,file exceeds maximum limit";
58:
59: }
60:
61: }
62:
63: catch(UnauthorizedAccessException ex)
64:
65: {
66:
67: return ex.Message + "Permission to upload file denied";
68:
69: }
70:
71: }
The above function takes care of following things before uploading file to the folder
- Invalid file name supplied.
- If file not exists or content length 0.
- Folder name exists.
Error Handling
While uploading done with UnauthorizedAccessException and returned with the message
On upload button click I am having following code
1: private void btnSave_Click(object sender, System.EventArgs e)
2:
3: {
4:
5: string strFilename, strMessage;
6:
7: strFilename = fileUpload.PostedFile.FileName.ToString();
8:
9: strMessage = uploadFile(strFilename,ConfigurationSettings.AppSettings["folderPath"]);
10:
11: lblMessage.Text = strMessage;
12:
13: lblMessage.ForeColor = Color.Red;
14:
15: }
16:
17: I have made use of Web.config file, in which I have added attribute as follows under:
18:
19: <configuration>
20: <appSettings>
21: <add key="folderPath" value="Images"></add>
22: </appSettings>
i.e. I have set up path of folder to upload image
To access control in project, I have added page called as “uploadTester.aspx” to the project in which I have added following line:
<%@ Register TagPrefix=”img” TagName=”Uploader” src=”userControl/uploader.ascx”%>
Which says that this control is register to this page with specified source.
And in HTML code I have added following code inside form tag:
<img:Uploader runat=”server” id=”Uploader1″></img:Uploader>
That’s all about
General:
To upload any of the file in respective folder user need to have permission for writing to the folder so please follow the following steps to prevent from the error.
Set permission to virtual directory by following steps in IIS
- Right Click on virtual directory which you have created for this project. Under directory Tab you will find
1)Read
2)Log Visits
3)Index this resources
Are marked as checked (enables) in addition to this make
4)Write access enabled or checked - Click on apply
- Click on ok
This will set right permission to entire virtual directory, this way we can minimize error from the front end for permission / access denied.
Other way to solve permission denied issue is to go to actual folder “images” by using physical path and follow these steps:
- Right click folder
- Sharing Tab
- Enable share this folder radio button
- Click Apply
- Click Ok
If u are using this code on 2000 server you should do following:
- Right click respective folder
- Go to security tab
- Select Everyone user
- Apply full control
- click on ok
Please Do comment!
- Click on Add
- Select New Item
- Select Web User Control
- Specify some Name
I have given name to this file as “uploader.ascx” and kept this file un