Click here to Skip to main content
15,906,645 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: javascript........... Pin
Guffa18-Nov-06 1:33
Guffa18-Nov-06 1:33 
Questionhow to fix Accordion problem ??? Pin
amin_behzadi17-Nov-06 20:45
professionalamin_behzadi17-Nov-06 20:45 
AnswerRe: how to fix Accordion problem ??? Pin
ayeleteric19-Nov-06 1:18
ayeleteric19-Nov-06 1:18 
QuestionEditing web.config while deploying Pin
Nicejith17-Nov-06 20:20
Nicejith17-Nov-06 20:20 
QuestionHow to add Color Dialog in the asp.net page? Pin
param thaker17-Nov-06 20:13
param thaker17-Nov-06 20:13 
QuestionDirectory Uploading Pin
sukhchain singh17-Nov-06 19:50
sukhchain singh17-Nov-06 19:50 
QuestionHelp About FTP Pin
Deepak the Cool17-Nov-06 19:38
Deepak the Cool17-Nov-06 19:38 
AnswerRe: Help About FTP Pin
Nicejith17-Nov-06 21:16
Nicejith17-Nov-06 21:16 
You can use WebClient to do this task.

You should use the namespace- using System.Net;

then create an object for webclient -

webclient wc=new webclient();
CredentialCache mycache = new CredentialCache();
mycache.Add(new Uri(ftpaddress), "Basic",new NetworkCredential(Username, password));
wc.Credentials = mycache;
wc.uploadFile(ftpaddress,filenametoupload) --this method can be used to upload the file you want..

Please go through the webClient section before going to do this.


QuestionApplication_Error in global.asax [modified] Pin
Nagraj Naik17-Nov-06 18:49
Nagraj Naik17-Nov-06 18:49 
QuestionCheckBox with GridView Pin
Gamzun17-Nov-06 18:47
Gamzun17-Nov-06 18:47 
AnswerRe: CheckBox with GridView Pin
dj.rock17-Nov-06 21:49
dj.rock17-Nov-06 21:49 
QuestionHow to find a average Sales Pin
JVVS17-Nov-06 18:48
JVVS17-Nov-06 18:48 
AnswerRe: How to find a average Sales Pin
WillemM18-Nov-06 8:08
WillemM18-Nov-06 8:08 
Questionhow to create reports in asp.net 2003. Pin
monuSaini17-Nov-06 18:29
monuSaini17-Nov-06 18:29 
Generalvgdsz Pin
mahili17-Nov-06 18:14
mahili17-Nov-06 18:14 
GeneralRe: vgdsz Pin
Suresh Pirsquare17-Nov-06 18:21
Suresh Pirsquare17-Nov-06 18:21 
QuestionInsert Row in Database Pin
monika_vasvani17-Nov-06 16:24
monika_vasvani17-Nov-06 16:24 
AnswerRe: Insert Row in Database Pin
Gamzun18-Nov-06 3:48
Gamzun18-Nov-06 3:48 
GeneralRe: Insert Row in Database Pin
indianet19-Nov-06 11:41
indianet19-Nov-06 11:41 
QuestionControlling POST action in ASP.NET v. 1.1 ? Pin
GregStevensCA17-Nov-06 12:58
GregStevensCA17-Nov-06 12:58 
AnswerRe: Controlling POST action in ASP.NET v. 1.1 ? Pin
indianet17-Nov-06 13:28
indianet17-Nov-06 13:28 
GeneralRe: Controlling POST action in ASP.NET v. 1.1 ? Pin
GregStevensCA17-Nov-06 14:11
GregStevensCA17-Nov-06 14:11 
GeneralRe: Controlling POST action in ASP.NET v. 1.1 ? Pin
indianet18-Nov-06 11:12
indianet18-Nov-06 11:12 
GeneralRe: Controlling POST action in ASP.NET v. 1.1 ? Pin
GregStevensCA18-Nov-06 18:09
GregStevensCA18-Nov-06 18:09 
QuestionForm Validation Pin
vct17-Nov-06 10:47
vct17-Nov-06 10:47 

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.