File Uploading to Access Database c#

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Tinus
    New Member
    • Jul 2010
    • 30

    File Uploading to Access Database c#

    Hi
    I followed the example on
    http://www.stardevelop er.com/articles/display.html?ar ticle=200303120 1&page=1

    Code:
    <%@ Page language="c#" Codebehind="defaultfile.aspx.cs" AutoEventWireup="false"
    	Inherits="Stardeveloper.UploadAccess.DefaultForm" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 
    
    <html>
    <head>
    <style>
    body { margin: 0px 0px 0px 0px; padding: 10px 10px 10px 10px; }
    body, input, td, select { font: 11pt Verdana; }
    a { color: #5A7193; }
    .stdInput { width: 500px; }
    .smInput { width: 250px; }
    .dimColor { color: Gray; }
    </style>
    </head>
    <body>
    
    <table align="center" width="100%" border="1" bordercolor="silver"
    	cellpadding="2" cellspacing="2">
    	<tr>
    		<td align="right">
    		Main Page ยท <a href="upload.aspx">Upload Files</a> 
    		  
    		</td>
    	</tr>
    </table><br>
    
    <table align="center" width="100%" border="1" bordercolor="silver"
    	cellpadding="2" cellspacing="2">
    	<tr>
    		<td bgcolor="#CCDDEE" align="center">
    		Uploaded Files On Access Database
    		</td>
    	</tr>
    	<tr>
    		<td bgcolor="#F7F7F7" align="center">i. All Files</td>
    	</tr>
    	<tr>
    		<td>
    		<div id="allFiles" runat="server" />
    		</td>
    	</tr>
    </table>
    	
    </body>
    </html>
    I am receiving the following error.

    Could not load type 'Stardeveloper. UploadAccess.Up loadForm'.

    I have done some research on the net and it seems the problem is that the
    /bin folder and its contained .dll file not being accessable.

    I am not able to find the bin folder anywhere.
    Where should I find it or do I need to create the folder ?
  • Tinus
    New Member
    • Jul 2010
    • 30

    #2
    never mind.I found the solution.

    Comment

    Working...