Notepad
I am heading to a dead end need some help from you guys
I have a form that has 6 fields for address information
when a user clicks on a button a javascript is called
what i want to do is get the values from the fields and open a notepad and copy in it
is this possible and can someone give me a example how to do it
View Replies
How do i open notepad server side in ASP .i have this so far. Code:
Dim WshShell
'remove the "server." part to run this clientside
set WshShell = CreateObject("WScript.Shell")
'this is path to notepad in win2k
'You should have enough priviledges to run it...
WshShell.Run "c:winntsystem32
otepad.exe"
set WshShell= nothing
View Replies
View Related
I have written an ASP application using our IIS server which retrieves data and displays them in a nice grid. My boss wants the application to create a .txt file of this data when a button is clicked and then open Notepad with this new file so that it can be saved locally on a user's harddrive.
I can create the file itself fine, but trying to launch Notepad client-side with this new .txt file has proven to be an absolute nightmare. It is a nightmare because I've gotten errors such as from "Automation server can't create object" to others that are a constant, annoying road-block to what seems to me ought to be a simple trick.
Bottom line, how do I do the above without getting errors (opening Notepad with the file created)? Again, Notepad is what my boss wants used, so with that I need to know the solution with ASP (not ASP .NET).
View Replies
View Related
I was thinking about create a web page to display my log files. I have a folder that holds all the notepad files (logs) on my hard drive.
There is a new file will be created everyday. Is it possible for me to create a webpage (ASP or HTML) to display all the logs?
View Replies
View Related