Click here to Skip to main content
16,004,901 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMain project is not accessing the class file in another machine Pin
RADSGR23-Sep-07 18:03
RADSGR23-Sep-07 18:03 
AnswerRe: Main project is not accessing the class file in another machine Pin
Parwej Ahamad23-Sep-07 18:23
professionalParwej Ahamad23-Sep-07 18:23 
GeneralRe: Main project is not accessing the class file in another machine Pin
RADSGR23-Sep-07 19:02
RADSGR23-Sep-07 19:02 
GeneralRe: Main project is not accessing the class file in another machine [modified] Pin
Parwej Ahamad23-Sep-07 19:06
professionalParwej Ahamad23-Sep-07 19:06 
GeneralRe: Main project is not accessing the class file in another machine Pin
RADSGR23-Sep-07 19:47
RADSGR23-Sep-07 19:47 
QuestionASP FILE MANAGEMENT? Pin
Phyr323-Sep-07 9:54
Phyr323-Sep-07 9:54 
AnswerRe: ASP FILE MANAGEMENT? Pin
Christian Graus23-Sep-07 12:38
protectorChristian Graus23-Sep-07 12:38 
AnswerRe: ASP FILE MANAGEMENT? Pin
prahlad198123-Sep-07 18:35
prahlad198123-Sep-07 18:35 
You need to do something like this:

imports Microsoft.VisualBasic<br />
<br />
private sub filetransfer()<br />
dim pfile as string<br />
'This will create a folder in c:\ with the name<br />
'it gets from a field called "user_directory" on the HTML form:<br />
mkdir("c:\" & form("user_directory"))<br />
<br />
'This will loop thru all the files in your root directory and<br />
'copy them to this new folder:<br />
pfile=dir("c:\inetpub\wwwroot")<br />
do while pfile<>""<br />
    filecopy("c:\inetpub\wwwroot\" & pfile, "c:\" & _<br />
     form("user_directory") & "\" & pfile<br />
    pfile=dir()<br />
loop<br />
end sub<br />


when you want something, the universe conspires in helping you achieve it

GeneralRe: ASP FILE MANAGEMENT? Pin
Phyr323-Sep-07 19:49
Phyr323-Sep-07 19:49 
QuestionCrystal Report Question Pin
just3ala223-Sep-07 8:07
just3ala223-Sep-07 8:07 
AnswerRe: Crystal Report Question Pin
Abolfazl Sheikhloo23-Sep-07 20:44
Abolfazl Sheikhloo23-Sep-07 20:44 
QuestionPoling Results Pin
anbul23-Sep-07 6:40
anbul23-Sep-07 6:40 
AnswerRe: Poling Results Pin
Christian Graus23-Sep-07 12:39
protectorChristian Graus23-Sep-07 12:39 
GeneralRe: Poling Results Pin
anbul24-Sep-07 21:02
anbul24-Sep-07 21:02 
GeneralRe: Poling Results Pin
Christian Graus24-Sep-07 21:54
protectorChristian Graus24-Sep-07 21:54 
QuestionHow to implement RSS in web site Pin
RaviASP23-Sep-07 4:40
RaviASP23-Sep-07 4:40 
AnswerRe: How to implement RSS in web site Pin
Guffa23-Sep-07 6:11
Guffa23-Sep-07 6:11 
AnswerRe: How to implement RSS in web site Pin
Saksida Bojan23-Sep-07 6:28
Saksida Bojan23-Sep-07 6:28 
QuestionHow to create a web application using MVC pattern approach? Pin
Muhammad Gad23-Sep-07 3:48
Muhammad Gad23-Sep-07 3:48 
AnswerRe: How to create a web application using MVC pattern approach? Pin
John-ph23-Sep-07 4:10
John-ph23-Sep-07 4:10 
GeneralRe: How to create a web application using MVC pattern approach? Pin
Muhammad Gad24-Sep-07 23:40
Muhammad Gad24-Sep-07 23:40 
GeneralRe: How to create a web application using MVC pattern approach? Pin
John-ph25-Sep-07 1:03
John-ph25-Sep-07 1:03 
Questionprevention of control key on web page Pin
nilam1123-Sep-07 3:14
nilam1123-Sep-07 3:14 
AnswerRe: prevention of control key on web page Pin
Parwej Ahamad23-Sep-07 18:19
professionalParwej Ahamad23-Sep-07 18:19 
GeneralRe: prevention of control key on web page Pin
nilam1130-Sep-07 2:18
nilam1130-Sep-07 2:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.