473,654 Members | 3,078 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

FileSystemObjec t

I have inherited form that requires me to use the FilesystemObjec t to
write to a file. I have to use Javascript to instantiate and use the
object. I think that I am having a problem as far as getting the
javascript to work server side. I am able to create a file and write
to it locally but when trying to work it on the server, I get
Unspecified Error. I thought that possibly using <script
language="javas cript" runat="server"> would take care of that. But it
says objected expected when I have thte runat=server in there. It
doesn't even recognize the function. Any ideas on how i can run the
following code onSubmit using Javascript? I had it done in vbscript
but the client insists that it be done using Javascript. Please
help!!!!!

Yemi

function getEmailList()
{
var fso = new ActiveXObject(" Scripting.FileS ystemObject");
var newfile = fso.OpenTextFil e("d:/inetpub/www.lottery.sta te.az.us/database/textfiles/textfile.txt",
8,true);
newfile.WriteLi ne("It works.");
newfile.Close() ;
}
Jul 20 '05 #1
2 32691
Does the server have any antivirus software installed? Norton is famous for
causing problems with this kind of script: if you have it then you might
look into disbling the "script blocking" feature.

tim

"John Cummings" <su*******@hotm ail.com> wrote in message
news:85******** *************** **@posting.goog le.com...
I have inherited form that requires me to use the FilesystemObjec t to
write to a file. I have to use Javascript to instantiate and use the
object. I think that I am having a problem as far as getting the
javascript to work server side. I am able to create a file and write
to it locally but when trying to work it on the server, I get
Unspecified Error. I thought that possibly using <script
language="javas cript" runat="server"> would take care of that. But it
says objected expected when I have thte runat=server in there. It
doesn't even recognize the function. Any ideas on how i can run the
following code onSubmit using Javascript? I had it done in vbscript
but the client insists that it be done using Javascript. Please
help!!!!!

Yemi

function getEmailList()
{
var fso = new ActiveXObject(" Scripting.FileS ystemObject");
var newfile = fso.OpenTextFil e("d:/inetpub/www.lottery.sta te.az.us/database/textfiles/text
file.txt", 8,true);
newfile.WriteLi ne("It works.");
newfile.Close() ;
}

Jul 20 '05 #2
"Tim Williams" <sa************ @THISpacbell.ne t> wrote in message news:<hf******* **********@news svr16.news.prod igy.com>...
Does the server have any antivirus software installed? Norton is famous for
causing problems with this kind of script: if you have it then you might
look into disbling the "script blocking" feature.

tim

"John Cummings" <su*******@hotm ail.com> wrote in message
news:85******** *************** **@posting.goog le.com...
I have inherited form that requires me to use the FilesystemObjec t to
write to a file. I have to use Javascript to instantiate and use the
object. I think that I am having a problem as far as getting the
javascript to work server side. I am able to create a file and write
to it locally but when trying to work it on the server, I get
Unspecified Error. I thought that possibly using <script
language="javas cript" runat="server"> would take care of that. But it
says objected expected when I have thte runat=server in there. It
doesn't even recognize the function. Any ideas on how i can run the
following code onSubmit using Javascript? I had it done in vbscript
but the client insists that it be done using Javascript. Please
help!!!!!

Yemi

function getEmailList()
{
var fso = new ActiveXObject(" Scripting.FileS ystemObject");
var newfile =

fso.OpenTextFil e("d:/inetpub/www.lottery.sta te.az.us/database/textfiles/text
file.txt",
8,true);
newfile.WriteLi ne("It works.");
newfile.Close() ;
}

I see that the client does not insist of JavaScript, but instead
favors using anything but VB trash. The answers to this are well
documented. Try the HTTP protocol this month.
Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3844
by: Marcelo Rizzo | last post by:
I am trying to get the name of a file with a specific extension (tmw) from several different directories. The problem I am having is that the program stops working on the second pass with an run time error 76. The paths are valid. I tested them and there is a file with the extension specified. Any help is appreciated Marcelo Rizzo
5
4055
by: John Dewbert | last post by:
*** post for FREE via your newsreader at post.newsfeed.com *** Hello, I have trouble passing a folder object (from a FileSystemObject) to a sub procedure. Consider the following code: =================================
3
6822
by: Wayfarer | last post by:
Hi, I've got a freebie hosting mirror of my production personal website (sounds kinda grandiose, doesn't it?) at http://journeys.webhostme.com/. At the production website I was using Scripting.FileSystemObject to get the date that the file was last modified and to read/write a counter text file for the number of hits that the whole site had. The freebie has a kind of half-ass*d FileSystemObject, but it has no GetFile method. Is there...
3
2116
by: Steve | last post by:
Hi all, FileSystemObject question... I'm trying to check if files exist or not, but the files are not sitting on the same server as our Intranet. Basically we have about 5000 photos in a directory on our database server, and they must stay there. I want to use the FileSystemObject (running on our Intranet server) to check if a photo is there, if so display it, if not
2
2171
by: Sean S - Perth, WA | last post by:
Hi all, If I create a FileSystemObject Object is it appropriate to reuse it to perform operations on different files/folders? Or should I create a new FileSystemObject Object for each file and folder? -- Sean.
9
3909
by: kermit | last post by:
I keep seeing that you can use the FileSystemObject in either VB script, or Javascript on an aspx page. I added a refrence to the scrrun.dll I added importing namespaces for 'System.Object', 'Scripting', 'Scripting.FileSystemObject', and a few others However, when I try to create the fso object I keep receiving an error. 'ActiveX component can't create object: 'Scripting.FileSystemObject'
2
4028
by: Luis Esteban Valencia | last post by:
I'm trying to write a little VB.NET script in an ASP.NET web page that will create folders, move files, etc... pretty much everything you can expect to do using the FileSystemObject library. Is this possible in .NET? If so, how do I do it? I've tried:
1
17111
by: G Gerard | last post by:
Hello I am using the FileSystemObject to copy files on a computer Dim MyObject as Object
3
1857
by: nagmvs | last post by:
hello I have a problem with FileSystemObject in Vb Suppose i want to declare as Dim fs As New FileSystemObject, when i type New After that i can't see FileSystemObject in derived DropDownList. When running my code compiler error coming is like User defined type not defined. before projects r running successfully with using FileSystemObject.
12
5905
lee123
by: lee123 | last post by:
why is this so hard to do. i have alot of books that have exaples of how to do these things but when i try the exaples they never work i have a previous post on "copying files" some of the other guys help on this one and i tried to do the same thing with the "movefile" but it never worked as you can see the "filesystemobject" is hard to accomplish for me because this "Movefolder" event falls in this category the code i have i have used for the...
0
8372
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8591
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7304
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5621
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4149
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4293
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2709
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1915
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1592
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.