Create Zip Files

I want to write with help of which i can create zip files using asp3.0. i will specify the folder & code will add the files which i want to make as zip file.also tell me is it require to register any .dll file on server for this?

View Replies


ADVERTISEMENT

Take Hostname, Look If Folder Exsist, If Not Create And Copy Files

what I need is is when a visitor comes to the site, I need it to check
the host name. if "www.hometowndigest.com" is the host, then check a
folder named "something" and if the folder does not exsist, create
folder "www" and then copy folder "temp" and its contents.

If the folder "www" is there, look in it, check to see if the files in
folder "temp" are in there, if not, copy the files that are not from
folder "temp" into folder "www". Code:

View Replies View Related

Create Database And Create Table On One Form

Here's what my code looks like...

View Replies View Related

Displaying Image From Database Saves Files To Temporary Internet Files

I have a website that we display images we have saved into a SQL Server 2000 database as binary BLOB. This is on a Windows 2003 Server. Just recently (a week ago) this website began to save the images it is displaying on the website as ASP pages in the Temporary Internet Files > IE.Content > Folder.

We have other websites where we use the exact same code and these do not save files on the server when they are displayed.

Here is the code to display the image:
Set rs = objConn.Execute( SQL )
Response.ContentType = "application/octet-stream"
Response.BinaryWrite rs("Product_Image")

SQL is the SQL String to get the image from database

When I add this code:

Response.ContentType = "image/jpeg"

The images still display on the website, but now are saved in the Temporary Internet Files folder as JPG's.

View Replies View Related

Can Php Files Execute Inside Asp Files?

Can a php file be executed inside an asp file? I need to execute a php file in another asp file but i'm not so sure it's possible.
My server can run both asp and php and they run without any problems... I just need to find a way to include the execution results of the php file in the asp one.
Is it possible to use SSI and include the executed php file and then the executed asp file in a main ssi file?

View Replies View Related

Convert ASP Files To Executable Files

I have installed PWS in windows 98 in each of the system at various places and put my Sales program files in the WWWROOT directory in all the branches. I'm afraid that the users may tamper my ASP files. Is there any way of converting .ASP files to .exe files so that the dont see my program.

View Replies View Related

How To Use ASP But Produce HTM Files, Not ASP Files?

I was wondering how some sites let you search by using a form, then present the results as static .htm files.

The reason I ask is that I tend to use ASP to process form information, then give the user a list of results presented on an .asp page. The list is simply drawn from a database in real-time and formatted into a template page.

The problem with this is that search engines can't see any of the information in the database, since they can't do the form submission. Is there a way around this?

View Replies View Related

Create A PDF From ASP

Is there anyway to generate a PDF using ASP Scripting(VB Script).

View Replies View Related

Create Pdf

Does anybody knows a way (free of cost, code or dll) to generate pdf?

View Replies View Related

Create Url

I use a website in asp for which I have to type a username and
password everytime I want to login.
On the form are two fields for typing the username and password and
one button LOGIN.
I want to create an standard url for the website which includes my
username and password so I don't have to type it in everytime.

I looked at the page source but I can't find the right string.
I thought maybe http://.........aspx?username=me&password=it

but that doesn't work.

View Replies View Related

Create PDF

Is there a (simple) way to create a PDF file from ASP?

View Replies View Related

Cannot Create A Asp

I have 2 developper machine running visual studio 2003 and Windows 2000. On the first machine (Machine A) I may create a new asp project without problem. On the second (Machine B) I cannot create a new project.Visual Studo create the project but not the initial files and freezes.

But I may create a new project from Machine A using the web server of machine B.I have checked the access rights of both servers, the access rights on directory wwwroot and inetpub.Everything seems the same.

View Replies View Related

Create A TGP In ASP

Has anyone seen or know if anyone has done this? I think that ASP would be a great tool to do this with but I am curious if anyone has tried it and found it to be too hard or too burdensome to follow through with?

View Replies View Related

Create New User Using IIS/ASP

I'm running IIS5 on a Win2K server, and I want to have an ASP page that
creates new users. I have some simple code to test this, but am getting
a "500" error when I run it. The ASP looks like:

<%

strDomain ="Foo.com"
strUser ="Foo1"

' Create new user with password
Set oDomain = GetObject("WinNT://" & strDomain)
Set oUser = oDomain.Create ("User", strUser)
oUser.SetPassword = "password"
oUser.SetInfo
%>

Just for this testing, I've added IUSR_machinename to the Administrators
group, but am still getting the 500 error.

View Replies View Related

Create Object & DAO

how to create dao.tabledef object in asp:

I need to convert the following code into asp:
Dim tdf As DAO.TableDef
Dim db As DAO.Database
Dim fld As DAO.Field

Set db = OpenDatabase("C:Mydb.mdb")
Set tdf = db.TableDefs("Table1")
Set fld = tdf.CreateField("Field2", dbText, 10)
tdf.Fields.Append fld

View Replies View Related

Create Hostheader With ASP

Is there a way to create a host header in IIS with an ASP?

View Replies View Related

How Can I Create A Guestbook?

I want to create a web page for my friends.(I have a subdomain and my server supports ASP scripts) It will contain a small basic guestbook.It must write the entries to a text file on the server.And i must be able to view the guestbook.

View Replies View Related

Create ASP File On The Fly

I'd like to create ASP file on ther server side. Can I use
fso.createtextfile("c:folder est.asp")
Do I need to create a folder too?

View Replies View Related

Trying To Create A Menu With ASP

I am trying to create a menu with multiple tiers. I want to use the one menu as an include file throughout the site. Depending on what page you are on, I want the 2nd and third tiers to show up.

The rest just show the tier 1 links. I'm pretty sure this can be done in CSS, but the problem is that with a very big menu, I'd rather not have to load up the entire menu when it all won't be showing.

There for I figured I could create it in ASP. I could set some sort of parameter in the page so the menu include file would know what page I'm on, and then would only show and load the 2nd and 3rd tiers of that section. Is this possible? Code:

View Replies View Related

Create Xml File With Asp

is it possible to create a xml file and save so that i can upload with asp?

View Replies View Related

Create Flowchart

i want to create flowchart/flowdiagram like msword.And the user type inside the rectangular what they want to do..

View Replies View Related

Create Txt File

How can I simply save some data into a flat file (.txt) ? I've some data available and if the user clicks on a button it will save that data into the flat file... The user also need to define the directory (as in VB the common dialog box)...

Is this possible ???

View Replies View Related

OWC Component Cannot Be Create Using ASP

I have created an asp page that pulls data from SQL server and displays
on webpage in the form of Table and Chart.

I use OWC to generate Chart. It work find on my computer with Ms office
2000 installed, but when I upload my the page to my webserver, it
doesn't work with the following error message:

006~ASP 0177~Server.CreateObject Failed~Invalid ProgID. For additional
information specific to this message please visit the Microsoft Online
Support site located at: http://www.microsoft.com/contentredirect.asp.

Does anyone know how to solve this problem?

P.S. On the production server, Office Web Component had already been
installed. WSCript.CreateObject("OWC.Chart") works fine in my colleage's
vbscript file.

View Replies View Related

Create An Use Threads

tell me with some examples to how to use our own threads in asp pages. I tried to do it in usual way how we are suppose to use it in console and windows application. but the same thing will fail in asp pages. it give "nullreference" exception from unknown module.

View Replies View Related

Create New Folder

how can i create a new folder by using ASP??

View Replies View Related

Cannot Create ASP File

I have Windows 2000 and recently included Internet Information Services. I
then created a simple ASP file and clicked on it. The Open With dialog
appears asking me to select a program. I copied an existing ASP file,
test.ASP from another computer where it runs successfully. When I copied it
to my computer it changed to test.ASP auto file. The other computer runs
Windows XP. I am not sure is this is the issue. I verified the IIS is up
and running on my computer. Is there anything that can be done to correct
this?

View Replies View Related

Using ASP To Create DOC File ...

I am using ASP code to create a Word document on the server and all is working except for one thing: I need to be able to insert page breaks. My existing style formatting for page breaks does not seem to insert a page break into the Word DOC. Suggestions? Code:

View Replies View Related

Create A Jobsite

How to create a jobsite.Please help me.Is any information regarding how to proceed to create a jobsite

View Replies View Related

Create A Dynamic URL

I've captured some data from a form and stored it in an SQL server table. The form is passed to an action script which builds the sql statement and writes the data to the db.

I want to write a URL (http://www.mysite.com/sites/home.asp)
and store the userID at the end of the URL (http://www.mysite.com/sites/home.asp?userID=22) so when I call the URL from a web page it goes to that users page.

I'm not sure how to approach this?

View Replies View Related

Create Table

I know I can Create Tables In a database with the CREATE TABLE sql statment, but I don't exactly know the syntax of the statment.

I want to add a table with a sertin feild that has a default value, is that possible?

The syntax I know is:

sql = "CREATE TABLE tablename(feildname FEILDTYPE,feildname FEILDTYPE...)"

Are there any other parameters that I can add to the statment?

View Replies View Related

How To Create Login?

I would like to create a login into my very simple web site. I was hoping if somebody could give me some links for good websites or if somebody has a good example that i can work on. I also want to be able to allow users to join.

View Replies View Related

Create A Combo Box In ASP 3.0

I want to take a text box that is in a grid and make it a combo box: Here is what the first part of the HTML looks like now:

<input type="text" name="txt_SERVICE_SN"
onkeypress="filterNonNumeric()" size="5" maxlength="3"
style="text-align:right"
onchange="fieldEdited(this.parentNode.parentNode)">

I tried switching the "text" to be "combobox" and that doesn't work.

I saw some other code for other combo boxes (not in the grid) and saw something like this:

<select id="test2"></select>

This will make a combo box. But I don't know why. I can't see anything in there that uniquely identifies this as a combo box.

View Replies View Related

Create New Variable

is it possible to create a new variable from an array element eg:

myArray=array("a","b","c")

var myArray(2) = "hello" 'create a variable called 'b'

response.write(b) displays 'hello'

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved