I created a web page in FrontPage2000 and used the calendar control supplied by FrontPage. Everything looks fine for me, even when I publish to my server, but my users only see a square box, sith an "x" in the corner.
What in the world might I be doing wrong?
Thanks
I don't use Visual Interdev on a regular basis, it is loaded and I use it to update some pages, but primarily I use MSFrontPage to make and publish all my changes.
I have never created a project in Visual Interdev, therefore I dont have anything in the suggested directory except an empty...
Tried all above except moving into wwwroot. have moved web dev into inetpub and tried moving global around but no help. Still not executing.
I do have Visual Interdev installed, have used it at times, don't know enuf about it to be less than dangerous. yet.
What else might I need?
OK, I may not have my Dev server set up correctly, If you could help me out a little I would appreciate it.
I do have Visual Interdev installed, but am currently not using it as much as I should be, I am scheduled to attend a week long class in March. I am testing from the browser but my root...
Simple stuff is good.
root, yes.
copied prod of global to dev, yes.
copied prod of pages to dev, no. I can try that but I usually publish dev to prod every day and I've had this symptom on dev for some time, just now figured out what is going on.
My global is checking Server.Variables against...
Help!
I am unable to get my development server to execute my global.asa file.
I use that file to create a session variable to identify the visitor from page to page and it works fine when I publish to my production server, but my development server won't execute it.
Any help is appreciated...
I have a form that I use to allow users to enter names into a database through. In this particular part of the form, I want to give my users the ability to select existing names from a list built from a SQL select statement, or to add a new name to the database if one does not exist.
Can a...
Create an .asp page
at the top, enter your code as you usually would:
<%@Language=VBScript>
Then tell the system that you are creating a excel spreadsheet:
<%
Response.ContentType = "application/vnd.ms-excel"
%>
The rest can be the HTML and VBscript you would use to create a table...
ok,
I use a where clause to gather many events based on the month an issue is created, which works for gathering the number of events created each month, the number of events ending each month, and I am able to gather the average number of weeks an event goes on once it is closed. I am...
I am having trouble with a SQL select statement. I have an Access database with a start date and a stop date of an event. I want to know what the average number of events are active each day, each month over the last year. So far my querry is giving me a synatx error. I need help!
Here's the...
I am having trouble with a SQL select statement. I have an Access database with a start date and a stop date of an event. I want to know what the average number of events are active each day, each month over the last year. So far my querry is giving me a synatx error. I need help!
Here's the...
I do this in one of my applications, but I am using vbscript on an asp page, you might try this:
Set maxpurchase = conn.execute("SELECT MAX(Purchase) as max FROM tblpurchases")
Then to retrieve it:
maxpurchase("max")
Hope this helps.
I have an application I am working on where I must use wrap="hard" inside my <TextArea> coding to ensure proper line breaks, and when displaying must use <pre> around my text to display properly.
The problem is I am unable to display in the font I need to use for my users.
How do I...
OK, yes it is actually trying to open the document on one of my users and making the changes you indicated did work. However, another of my users still has almost the same indications as before.
Now, while they are definitely opening the document in WORD and since I have a SUB at the top of my...
If you have access to your global.asa file, you can create a global session variable when the person first accesses your site automatically, and then also automatically clean up your variables when they leave.
In the global.asa file you would:
Sub Session_OnStart
FrontPage_StartSession
(Run...
I have created a document in .asp using:
<% Response.ContenType = "application/msword" %>
at the top of my document and it works great for me and some of my users. The document accesses my database and creates a multipage document in WORD just as I expect it to. But when some of...
I have code in an ASP page to insert some data, I want to insert into one table, retrieve the primary key from that entry and then insert that into another table. Here is what I have so far and I am getting type mismatch when trying to insert into the second table:
conn.Execute "insert...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.