Timothi was right, these permissions were at the IIS level this is because i have set R/W permissions from server and site admin for both IIS ftp server and IIS web server. and i run the following script on the server.
Code:
<SCRIPT LANGUAGE=vbscript RUNAT=Server>
DIM conn
DIM dsn
DIM rs
Dim mySmartUpload
Dim intCount
Dim fname
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
//uploading attachment file to the server
mySmartUpload.Upload
intCount = mySmartUpload.Save("abdul/attch")
For each file In mySmartUpload.Files
fname=file.FileName
Next
remaining code can not show due to characters limitation on post
</SCRIPT>
Bookmarks