It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to transfer text file over sftp (winSSH server). how can I do it? I realize that I need to write script and run with windows scheduler. is there any example? pls guide me.
Read a step by step guides how to:
write file transfer script using WinSCP (SFTP client) and
schedule file transfers to SFTP server.
(I'm the author of WinSCP)
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to create a file uploader. User chooses file using website, and the main problem is I have to save that file to ftp server which is another computer... Any suggestions?
Any help would be great.
You can save it by passing IP address of that pc, if another pc is connected with LAN then you can do this by passing IP address with folder details where you want to save that file.
But that folder must be shared to network using that only you can save file to another pc.
Thank you.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there a way to keep internet connection alive while application is switched to another task, such as PhotoChooserTask or ShareStatusTask? I've already seen background agents, but they doesn't meet my needs.
No. Launching a task is pretty much the same as launching another application: your own application gets turned off and stops running. Therefore, it isn't possible to keep open the existing network connections, nor to do any kind of background processing.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I just downloaded ASP.NET along with some other things(SP1 and such) Total: 9XX MB.
I had to restart my computer and now when I try to open a new project via my VS2010, I see nothing different, I can't find the Web Form option, Here's the URL I downloaded from:
http://www.asp.net/downloads
Thanks!
Now you need to go to http://www.asp.net/get-started and start learning. (Of course, there are other places you can go to learn, but this is an obvious choice).
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to open a file in the folder (/root/Desktop/HTMLFiles/sample.html) as http://localhost/HTMLFiles/sample.html. I'm using a Linux machine.
Can anyone help me?
Thanks in advance,
Gnik
place HTMLFiles under your webroot. If you dont wnat to do that check https://serverfault.com/questions/295975/add-a-directory-to-the-apache-web-root
You most certainly have python installed. I would use the simple HTTP server bundled with Python:
python -m SimpleHTTPServer
Just navigate to the directory you want to serve files from and run that command.
You will be able to see the content at http://127.0.0.1:8000 or http://localhost:8000
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I just want to create an asp.net VB Forum and the database should be MS Access.
No reason to be rude about this question. Here are some resources that can get you started.
http://www.asp.net/get-started is a good place for information about building your first ASP.NET application.
http://www.asp.net/community/projects#jm_starter_kits_and_samples has links to some starter kits that can get you up and running.
http://www.asp.net/downloads/starter-kits/the-beer-house is an older starter kit, for ASP.NET 2.0, but I used this a while back and it's pretty good.
As for using MS Access, I would try to get your first web application up and then ask a more specific question here on Stackoverflow when you run into some problems.