VBscript query results to a form
Although I have found a number of example of logon scripts, I am writing
(and trying to learn) a VBScript that will take user id and password entries
on a form on a page name logoon.asp and used query an imported MS-Access 2000
DB. The records in a table named owner_name in the DB contains user id and
password fields as well as a unique record key of owner_id.
I have a fair background in Access VBA but a newbie at Front Page and
VBscript. I think I have the conn, open DB, and exec sql with the form user
id and password criteria coded OK. I have a do-loop to read the single record
in the recordset to get the owner_id field value.
OWNER_ID = RS.FIELDS ("OWNER_ID")
My questions is once I have the unique key (owner_id) from the Access
record, how do I "post" it back to the form?
I'm hoping to use KB Article 308697 to pass this unique key to the first of
a series of pages with queried data particular to the "owner".
Part 2
The majority of the web pages are public so the logon.asp (two levels down
one leg of the navigation structure) and used only to provide/protect access
to the user's unique data. After the submit on the logon.asp page and passing
a check of user id and password in the DB; the script should redirect the
user to the first "protected" page. (All other owner pages will be linked
from this page and the data queried using the unique owner_id value).
Is the following code the method to "jump to" the first protected page and
if so where in the script must it be placed?
response.redirect "owner_name_pg1"
Part 3
====
I've familiar with the MS-Access VBA debuging tools; is there similar
available debugging line and variable tools?
(this web development is a donation to my home town)
Thanks...
Jim Tinder Tag: Difficult? Tag: 62593
Help! Help! ASP Form
I've a form that request data from a remote SQL sever when a user enters a
starting date and a ending date on the form. I am not sure why but when the
form opens I get the following error:
Database Results Wizard Error
Description: [Microsoft][ODBC SQL Server Driver]Invalid use of default
parameter
Number: -2147467259 (0x80004005)
Source: Microsoft OLE DB Provider for ODBC Drivers
One or more form fields were empty. You should provide default values for
all form fields that are used in the query.
But the Form works, how can I fixs this problem??
Jim Tag: Difficult? Tag: 62590
FP fonts changing
I use Vbulletin for a website, with the program I use FP2003 to make the web
pages and insert them into the template area of VB. The site is for a
volunteer youth program and every year I have to update them. When I cut the
code out of VB and paste into FP to make the changes and then put it back in
VB all the fonts and sizes change. This is not adding anything just changing
a few names and not even the whole line. It is very aggravating because what
should take seconds takes half a hour because I have to search for codes to
correct this. I can use FP98 and it works just fine. Why would this be
happening when it is correct in FP but somewhere in the transition things
change? Tag: Difficult? Tag: 62588
Showing videos on all web browsers
With a lot of help from the forum, I now have a web page where the viewer can
select, from a list, which video will be played in a single player on that
page. See Http://www.fumcwl.org/ THE MEDIA ROOM.htm
Now, because this page only works with IE I would like to do the same thing
only subsitute a flash player for the windows media player and present the
same movies in swish format. I have tried to change the code to do this but I
don/t have enough knowlage of java script to make it work. Any help will be
appreciated. Tag: Difficult? Tag: 62586
Edits to DBI
FP 2002 - SP3 - with Access 2002 DB -
Created the DBI electing all 3 pages (submission, results & editor) into an
existing web - working live on the server.
The add/deletes work but I can not EDIT existing records - I know this is
not too uncommon of a problem but I don't know the solution - help pelase! Tag: Difficult? Tag: 62579
Possible bug in FP2003
I have noticed that sometimes my systems completely locks up when using
FP2003.
It does not always happen, but the common denominator is when
moving/resizing a frontpage dialog box.
It happened today consistanty.
Opening the Edit->Find dialog box.
Enter a search string, select "Source code".
If the list of source files that the string was found in is larger than
the display box, resizing the dialog window causes my system to freeze
up.
Machine specifics.
WinXP (Home) SP2, up to date on fixes
Office 2000 Professional SP1
Frontpage 2003 (using office update, am at the most up to date code)
Machine Pentium Celeron 1.3GHz, 786MB RAM.
Anyone else seen this or heard of any bugs in Frontpage?
Chris F. Tag: Difficult? Tag: 62577
How do I import .swf into FrontPage 2000 ??
Hi
Trying to import a simple Flash file: .swf
into FP2000.
I have tried Insert/Picture/From File . . . . FP said it didn't support this
file extension.
When I import - nothing happens (if I open up HTML it has not been
inserted).
As you can see I'm new to Flash.
Any help would be appreciated.
Thanks, Stephen Tag: Difficult? Tag: 62572
Script To Send To Exchange E-mail
Can anyone recommend a script that will take a submission from a
Frontpage form and send it along in e-mail format to an Exchange e-mail
server?
We just changed from CC:Mail to Exchange, and now some of my form
submittals are not working. I think I need to upgrade the script.
Thanks in advance,
John C. Tag: Difficult? Tag: 62554
Form Error - Not Emailing
I have a simple form in FP2003 - a submit button that I want to send via
email (the form will get more sophisticated when I get this to work).
I have the email address entered into the appropriate field, but when I hit
okay, I get a message that states:
This form cannot be configured to send results via email....
I click no, so it will not remove the email address (there is a remote
server I will publish this to and it has FP running - it is a Windows Server
2003 with IIS 6 running and FP extensions installed/activated/displaying my
website).
I am sending to a yahoo account just for testing, but the message is not
being delivered.
Is there something I need to check on the server? Am I doing something stupid?
Thanks in advance. Tag: Difficult? Tag: 62547
HELP ! HELP! SQL to ASP Page
Can anybody tell me why the SQL query work number 1 works until I change it
in number 2 and move it to an ASP Page in FrontPage 2003? If I copy number 1
to a FrontPage 2003 ASP Page it works.
Number 1
SELECT Shipments.Shipper_Reference, Shipments.Consignee_Company,
Shipments.Consignee_Contact, Shipments.Consignee_Address1,
Shipments.Consignee_City, Shipments.Consignee_State,
Shipments.Consignee_PostalCode, Shipments.Consignee_Phone, Shipments.Country,
Shipments.Fuel_Surcharge, Shipments.Total,
Shipments.UserName, Shipments.ShipDate, Shipments.ServicePlaintext,
Packages.Tracking_Number,
Shipments.Business_Unit, Shipments.Shipping_Group
FROM Shipments INNER JOIN
Packages ON Shipments.ShipmentGUID =
Packages.ShipmentGUID
WHERE (Shipments.Business_Unit <> '') AND (Shipments.Shipping_Group <>
'') AND (Shipments.ShipDate BETWEEN CONVERT(DATETIME,
'2006-03-01 00:00:00', 102) AND CONVERT(DATETIME,
'2006-03-21 00:00:00', 102))
ORDER BY Shipments.Shipper_Reference, Shipments.ShipDate,
Shipments.ServicePlaintext
Number 2
SELECT Shipments.Shipper_Reference, Shipments.Consignee_Company,
Shipments.Consignee_Contact, Shipments.Consignee_Address1,
Shipments.Consignee_City, Shipments.Consignee_State,
Shipments.Consignee_PostalCode, Shipments.Consignee_Phone, Shipments.Country,
Shipments.Fuel_Surcharge, Shipments.Total,
Shipments.UserName, Shipments.ShipDate, Shipments.ServicePlaintext,
Packages.Tracking_Number,
Shipments.Business_Unit, Shipments.Shipping_Group
FROM Shipments INNER JOIN
Packages ON Shipments.ShipmentGUID =
Packages.ShipmentGUID
WHERE (Shipments.Business_Unit <> '') AND (Shipments.Shipping_Group <>
'') AND (Shipments.ShipDate BETWEEN CONVERT(DATETIME,
'::TxtStart::', 102) AND CONVERT(DATETIME,
'::TxtEnd::', 102))
ORDER BY Shipments.Shipper_Reference, Shipments.ShipDate,
Shipments.ServicePlaintext
Any Help!
Jim Tag: Difficult? Tag: 62546
password protection of documents
I am reating an Itranet that will allow employees to access personel files.
Each employee must have their own password which will allow access to their
files. Can this be done in FrontPage?
Also, is there a way to generate an automatic e-mail each time a page is
updated on the Intranet to notify employees that there has been a change and
to visit the site? (Kind of like the button with this program that you can
click to notify users of replies.) Tag: Difficult? Tag: 62544
Problem with form action=../index
I have a page in a folder named signup. I want to use a submit button to
return to index.html
This code results in an incorrect address error when the button is clicked:
<form method="POST" action="../index.html">
<p align="center"><input type="submit" value="Return"></p></form>
However, if I use a hyperlink instead of the button, it works fine:
<p><a href="../index.html">Return</a></p>
Why does the form fail whereas the hyperlink works?
Many thanks, Robert Tag: Difficult? Tag: 62542
nooB form question
I want to use a simple form with a checkbox either on or off and store the
results to a text file, with minimal overhead. Very ignorant about this
stuff so be gentle! I have IIS running (but no front page extensions) on a
windows machine.
Scope: "MyPage.Html" displays form with one checkbox reading default value
from text file (MyFormData.Txt) in same folder. If user changes value of
check box and hits submit it logs those results to MyFormData.Txt
over-writing the previous contents.
What is the simplest way to accomplish? Sample code would be much
appreciated.
Thanks in advance.
- Ben Tag: Difficult? Tag: 62539
sum sub levels.
Hi there,
My name is Jerome. I would appreciate your help with the following problem.
I have an excel sheet whcih contains data displayed in various levels. There
are 11 levels in total. There are over 5000 rows. However each level has
different categories. I have to add the values of level 2 in level 1 and all
the values of level 3 into 2 and so forth. See tteh format below.
You'll notice that I have to add (PAYMENTS, TRANSFERS AND SUBSIDIES,
PAYMENTS FOR CAPITAL ASSETS - which are in level 2 ) in level 1 (PAYMENTS)
I should do the same for (TAX RECEIPTS, SALES GOODS & SERV NON CAP ASS,
TRANSFERS RECEIVED, FINES, PENALTIES AND FORFEITS, INTEREST, DIVIDEND, RENT
ON LAND, SALES OF CAPITAL ASSETS) and add it in level 1 (RECEIPTS)
LEVEL CODE AMOUNT 1 2
1 96623 PAYMENTS
2 982623 PAYMENTS
2 988623 TRANSFERS AND SUBSIDIES
2 996623 PAYMENTS FOR CAPITAL ASSETS
1 6318623 DIRECT EXCHEQUER PAYMENTS
2 6319623 DIRECT EXCHEQUER PAYMENTS
1 1623 RECEIPTS
2 2623 TAX RECEIPTS
2 3623 SALES GOODS & SERV NON CAP ASS
2 40623 TRANSFERS RECEIVED:
2 65623 FINES, PENALTIES AND FORFEITS
2 72623 INTEREST, DIVIDEND, RENT ON LAND
2 102623 SALES OF CAPITAL ASSETS
I have to do this for the entire worksheet. Could you please advise me how I
should go about this.
Thank you very much!:O)
Best regards,
Jerome Tag: Difficult? Tag: 62538
HTML unused vertical space around table
I'm using a pre-designed web site that allow custom pages with html
programming.
I've included the following as an example.
<b>Test 1234</b>
aaaaaaaaaaaaaaaaaaaa
The above displays the top text in bold, and the other text. It is at the
top of the page. However, when I try and incorporate a sample table (below),
it seems to incorporate a large vertical space before and after the table (ie
blank area at top of page). When I add the below programming directly after
the programing at top, the top text is displayed at the top, but there is
still the same distance (space) before the table starts. Any suggestions.
<TABLE BORDER=1>
<TR><TH>Name</TH> <TH>Extension</TH></TR>
<TR><TD>Raha Mutisya</TD> <TD>1493</TD></TR>
<TR><TD>Shalom Buraka</TD> <TD>3829</TD></TR>
<TR><TD>Hallie Curry</TD> <TD>8372</TD></TR>
<TR><TD>Shari Silberglitt</TD> <TD>4827</TD></TR></TABLE> Tag: Difficult? Tag: 62526
data erased when error made
When a client makes an error on my form, based on validation rules, a Return
to Form link appears in the error message. If the client clicks on that, all
data is erased and a fresh, blank form is presented. If the client clicks on
the browser Back button, all the data is preserved, ready for correction.
How do I prevent the FP bot's bad behavior? Converting the Return to Form to
a Back command would be OK. Returning to the form with errors highlighted
would be ideal.
Thanks for any help. Tag: Difficult? Tag: 62524
Help with appearance of shared border?????
Please take a look at this page:
http://www.lecontelodgealum.org/
Look at the shared border on the left side of the page. Note that the
border has links as the content -- also -- look at the double line that goes
around three sides of the content in the shared border. I want that double
line to go completely around the contents -- how do I get the double line to
go on the right edge of the shared border, between the shared border and the
main part of the page?
Thanks. Tag: Difficult? Tag: 62522
SQL to Front Page 2003
Could someone give me the name of a good book that would help me when I
am building taking SQL queries and moveing them in to Frontpage 2003 as an
â??ASPâ?? pages? I am not sure of what types of changes need to be done with SQL
statements.
Thanks,
Jim
PS: Also any good web site for help. Tag: Difficult? Tag: 62519
FP keeps losing control of layout cell formatting (shadows etc.)
Hi, I have FrontPage 2003 and have been using Layout Cells. E.g. I will
wrap a table in a layout cell, then give it a drop shadow and rounded
corners. Great.
However, now and then FrontPage 'forgets' that it created these cells, and
loses all control over the formatting. When I click the cell border, it no
longer highlights the complete cell, and instead just selects one side of
the drop shadow as a picture. If I resize the table, it no longer resizes
the shadow images.
The only way round it is to delete all the shadows, borders, corners, and
their individual cells, and start again by wrapping the table in a layout
cell from square one.
:(
Any ideas how I can get FP back to remembering it controls these layout
cells? I have some pretty complex ones it has now forgotten to let me
adjust.
--
Thanks.
CJSnet
(Remove TEETH to reply by e-mail.) Tag: Difficult? Tag: 62512
Creating sub-topics in navigation bar
I want to create "sub topics" that you can click on on the navigation bar.
I.E. I have NECKLACES as one of the items on my navigation bar. I want to be
able to then add sub-categories called "pearls", "crystal", etc. So, when
you click on NECKLACES, you see a list of these categories beneath it on the
navigation bar. If someone can just tell me what to look for in my FrontPage
manual, that would help! I don't know what this is called. I'm very new to
FrontPage 2003 but enjoy the learning part. Tag: Difficult? Tag: 62510
ASP To HTML
Thanks to the suggestions on this forum...I've been able to transfer data
from my VB app to an ASP page (FP 2003). I used the QueryString to enter the
data on my form (name, company etc). So far so good. Now all I need is for
the customer to hit a submit button to return the data to me. This is where
I'm stuck. The FP form doesn't work on an ASP page.
Should I find comparable code so I can use HTML or is there a simple way on
ASP to return the data to me.
Thanks Tag: Difficult? Tag: 62503
Help with searching a database with two drop down boxes
Hi all. I'm kind of a newb to frontpage and had a question about a
database I am working with. I am using Frontpage 2003 on a Windows
2003 server and all necessary extensions.
I have created a database and ASP pages that allow users to enter
educational links with other information so that others can access the
compile list. However, I am running into problems setting up the search
page.
The form that is filled out contains input for the name of the site, a
link, a description, checkboxes for grade level it applies to and also
the subject matter it pertains too.
For the grade level and subject, I used multiple check boxes so that
more then one choice could be picked if the user wanted multiple
entries.
I have created a search and results page but have been unsuccessful
getting the results to post. My search page has two drop-down menus
for subject and level. After choosing each, you Submit and I want it
to take you to the results screen where it will display just the links
that match the search request.
Again, I am kind of new to this but I am under the impression I will
need to insert a database results wizard on the results page and then
tie it to the submit button on the search page. Problem is I am not
sure how to code the button and setup the results wizard properly.
Am I on the right path?
In the database results wizard, do I need to set criteria to filter for
subject and level? Besides choosing the fields to publish is their
anything else special to do in the wizard?
As for the button, I am not sure really where to start. I know I have
to have it filter the database by the two drop-down fields, but not
sure how to code that.
Can anybody recommend a good site for coding asp in relation to what I
am trying to do.
Any insight and wisdom would be greatly appreciated.
Thanks in Advance.
--
JackisBack
------------------------------------------------------------------------
Posted via http://www.forum4designers.com
------------------------------------------------------------------------
View this thread: http://www.forum4designers.com/message430206.html Tag: Difficult? Tag: 62482
paypal code
I'm trying to add paypal shopping cart to my site. I get my data from ms
access using asp. I added paypal code to my page. Can you tell me how can I
pass my data to paypal variables? What is the format? You can see the paypal
code here .The two variables are Item_Name & Amount and my two fields are
ITEM & PRICE. As you can see I should replace "HTML BOOK" & "24.99" with my
item & price. I tried this format and it didn't work
<input type="hidden" name="amount" value<%=(FP_Field(fp_rs,"price"))%>>
I'm using fP2003 and win xp.
I thank you in advance
<form name="_xclick" target="paypal" action="https://www.paypal.com"
method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="HTML book">
<input type="hidden" name="amount" value="24.99">
<input type="image" src="http://www.paypal.com/en_US/i/btn/sc-but-01.gif"
border="0" name="submit" alt="Make payments with PayPal - it's fast, free and
secure!">
<input type="hidden" name="add" value="1">
</form> Tag: Difficult? Tag: 62474
Changing Screen Resolution
Can anybody assist me please with changing the screen resolution of a site. I
should say that I am new to Frontpage and have developed a site using an
embedded template. The site was made on a PC set to 1024x768, but it seems
that anybody viewing the web site with a smaller screen res has to scroll
around. Ishere a way to change the res in Frontpage. I realise I may hae to
change the layout to suit. Please dont suggest any code, as I dont know how
to use it yet !
Many Thanks Tag: Difficult? Tag: 62470
macro made in VB
Hello, I have macro made in VB for MSWord that I would like to have in
FrontPage.... But unfortunately, Frontpage doesn't have the possibility of
recording a macro as in Word and Excel... :-(
Could somebody help me...
How can I convert this macro into VB for FrontPage??
Sub Macro3()
'
' Macro3 Macro
'
selection.InlineShapes.AddPicture FileName:="S:\deb_ajou.gif", LinkToFile _
:=False, SaveWithDocument:=True
End Sub
Thankyou very much for your support !! Tag: Difficult? Tag: 62469
doctype for frontpage; other posts not helpful
i went to W3. org but it was not helpful. I tried several doctypes and tried
the validator and they all showed errors. Which type is used for FP 2002? Tag: Difficult? Tag: 62467
Can we execute a WebBot
Hi!
I would like to know if we can execute in a javascript or vbscript a webbot
because in my form post action I do this bellow:
<form name="theForm" method="post"
action=https://esqa.moneris.com/HPPDP/index.php onSubmit="return
Validator(this);">
and the person that create the HTML page is using webbot stuff, to send or
save in a file the content of the fields of the web page.
I want to do both, redirect on the submit action to another web site and
save or send an email with WEBBOT.
Thanks Joel :) Tag: Difficult? Tag: 62466
Menu options?
Hello,
Built a site with FP 2002 and used web component hover buttons. Very cool
effects. I found (below) the reason why they do not now work consistently and
so going to redisign. Does FP 03 offer a menu development system that gives
a similar look and feel that is more compatible? I used a small table with
about 15 menu selections and dropped a hover buttion with link in each cell.
My temp solution is to replace the buttons with simple hyperlinks as a
menu. I finally figured out the code that keeps the link from changing color
once visited. Also using a basic rollover effect e rollover effects to
provide mouse over feedback.
thx
Dan
You need to install a Java Virtual Machine to be able to see them. You
can get it from http://java.sun.com/
Windows XP no longer includes a JVM.
Because of this I would recommend that you look at Interactive Buttons
in FP2003 or standard mouseovers. You can create the latter with the
DHTML toolbar in FP2002.
Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
-----Original Message-----
From: Howdee [mailto:Howdee@discussions.microsoft.com]
Posted At: 24. juli 2004 06:52
Posted To: microsoft.public.frontpage.programming
Conversation: Web Component (Hover button) not published
Subject: Web Component (Hover button) not published
Hi, friends!
I'm using the 2002 version of FP. I've recently started publishing from
the other OS (XP) that I have on my machine, rather than Millineum.
When publishing from XP, the Hover Buttons at the bottom of the page to
direct traffic to the index page are not displayed correctly.
Anybody got a helpful suggestion?
Thanks! Tag: Difficult? Tag: 62463
Form Data saved to file
I have developed a form in FP2003 and want the input sent to an xml file.
The users input the form from our website. Our webhost does not support asp,
but cgi. I use FP but haven't not used it in this capacity. Any help is
greatly appreciated as we are nearing the deadline!
Thanks.
RB Tag: Difficult? Tag: 62459
Shared border shows twice on page
FrontPage 2002
Everything was OK. Now on my home page only the bottom border is showing
twice. If I remove the bottom border it all goes away. I am using a theme
and it is there. I have tried to remove and then put the shared borders
back on and it still does the same on the home page only. The bottom border
is ok on all the other pages. I even replaced the index.htm with a version
that was working. The bottom border is only doubled on the internet but
shows single in the Front page editor. It does show double if I open it
locally.
How can I fix this?
www.strongsvilleheating.com
Leone Tag: Difficult? Tag: 62458
Shared Border
Using Frontpage 2003. I use Shared Borders. All of a sudden I can't click
on my bottom border to edit. It is there. I can see the dashed line, but I
can't get below that line to type anything.
--
Chris Tag: Difficult? Tag: 62444
Forward this mail
Hi,
Could someone point me to where can I find ASP codes for "Forward this
e-mail"?
I wish to add this little code, if possible, to newsletters that we
distribute to subscribers, and help them to easily forward the e-mail to
friends if they wished to.
Many thanks in advance. Tag: Difficult? Tag: 62441
Form Submit and ASP Doesn't Work
I have an ASP page with a form. The Submit button on the form doesn't appear
to work. I've made sure it's set as Submit.
What am i doing wrong?
Arne Tag: Difficult? Tag: 62439
Local vs. Public access
I have a page hosted on godaddy.com, but if someone access it from our
network at our office how can I detect that and by pass the login? I can
check the local address but that's not very secure as if someone else out
there has the same private IP address scheme it would consider them local
and that's not the case.
I'm using ASP and JavaScript is ok too. Anyone have any suggestions? Tag: Difficult? Tag: 62435
Help with Query String
I'm trying to automatically fill in a few text boxes on a Form. I understand
the data..via a URL can be displayed via a querystring. What lines of code
do I need to fill in the text boxes?
Thanks Tag: Difficult? Tag: 62432
SQL to FrontPage 2003
What I am trying to build is a form that allows the user to input two dates.
The first being a start Date then an Ending Date. I have the form built with
the first textbox named TxtStart and the second being TxtEnd and Iâ??ve tried
the following statement but itâ??s not working.
WHERE (Shipments.ShipDate BETWEEN CONVERT(DATETIME, â??::TxtStart::', 102)
AND CONVERT(DATETIME, '::TxtEnd::, 102))
Also could someone give me the name of a good book that would help me when I
am building â??ASPâ?? pages with SQL statements that need to be changed?
Thanks,
Jim Tag: Difficult? Tag: 62430
Changing focus in a form
I use a form with several drop-down list boxes and I am having the well-known
problem with wheel mouse users accidentally changing their selections. Each
Select List has a piece of VBScript on the "change" event to check the user's
selection. Is there any way that I can use the VBScript to firstly check the
selection and then move the focus away (as in the VB SetFocus method) to
prevent accidental alteration of the users selection.
I have tried the onMouseWheel=return false stuff but that doesn't do the job.
As an alternative how can I lump all my selection validation onto the submit
button of the form? The onSubmit code for the form is already occupied by the
automatic code placed their by Frontpage as follows:-
onSubmit="location.href='_derived/nortbots.htm';return false;"
Can I get the onSubmit event to run some VBscript before it runs off to the
webbot? Tag: Difficult? Tag: 62428
Screen Tip for a photo
How do I create a screen tip for a photograph?
Using FP 2000
And if the only solution is to insert HTML code, where do I insert the
code - relative to the photo in HTML view.
Thanks, Mark Flynn Tag: Difficult? Tag: 62423
Send Parameter to Data Access Page
Novice user...
How do I send parameters (3) to a Data Access Page in which the Access 2000
query is requesting the paramter?
(Something simple like on an ASP page, you put
*page.asp?Paramter="Parameter" would be nice, but it's going to an HTML page) Tag: Difficult? Tag: 62419
Find and Replace HTML Macro
For any one who can help me, I would greatly appreciate it. In the past I've
only built macros using recorders, the more mindless method, so I have
limited experience with writing them from scrath. Anyway...
I would like to develop a macro that removes all style and class attributes
as well as all font and span tags. I was driving myself nuts last night
trying to figure it out.
If any one has any suggestions, please don't hesitate to post a reply. Thank
you!! Tag: Difficult? Tag: 62416
Launching a .wmv file in external player
How do I make a link to a .wmv file launch in the player, instead of it
opening a blank page and then the player?
Brgds
Trond Svendsen Tag: Difficult? Tag: 62404
How do I use ASP with a form in Frontpage?
I am using a feedback form in FP 2002. I see under the form properties that
I can send to other and one of the options is ASP script. If I select this
option how do I tell it where the script is or where do I place it? And in
this case would this be an asp page rather than htm? Tag: Difficult? Tag: 62403
frontpage 2002 email form error
Hi!
I've been having trouble trying to get a form to work properly and send
email. I get this error message after pressing 'submit':
FrontPage Error.
User: please report details to this site's webmaster.
Webmaster: please see the server's system log for more details.
Found this solution by Microsoft;
http://support.microsoft.com/?scid=kb;en-us;308242&spid=2514&sid=377
I've tried installing IIS, and this stuff is well over my head. It's my
webhosting company that seems to be in control of the server side of things.
They're the ones who install the Frontpage Server Extensions.
I reported this error to the webhost, asking why it wasn't working, to which
i received:
"That meant that your frontpage extensions has been compromised, it could be
during the uploading process when you upload files to your server. The only
thing to fix that is to reset everything to default and you will need to
backup everything including email and then you will need to open us a new
ticket advise us to reset the account and activate frontpage and then you can
test that."
They reset the account, and this didn't fix the problem. Upon reporting that
I was still experiencing the same problem, I received.
"This is a frontpage error in your code. We do not provide any support for
this. "
I'm feeling quite frustrated because i didn't have this problem with my
former webhost, and haven't done anything different to the way i use the
forms feature with Frontpage 2002. The email address I want results forwarded
to is valid, part of the same webdomain, no different to my former way of
processing forms. I've followed my webhost's tutorial on how to set up forms
with FP - it tells me to do the exact same procedure. I tested an old form on
the website, which worked fine with the former webhost, no change to the code
- but that's now getting this same error too.
This links to a very basic form i'm tryng to accomplish.
http://www.newtownmums.com.au/bookclub.html
Is it possible for Frontpage 2002 to have a bug or corruption with how it
generates code at my end? I've put it through 'detect & repair'. I'm not a
programmer. I've been trying search online to find where there could be a
problem with the "code". My brain is exhausted. My gut feels like the
webhosting company has given me a bum's steer. I'm still trudging through
with the search for resoultion because I want to get things to work and don't
want to abandon Frontpage.
Any help would be greatly appreciated.
Thank you :)
Ayca Tag: Difficult? Tag: 62401
Filling In Form via URL
I have a short registration screen. Via a Form...there are five text
boxes...3 of which I would like to automically fill in via the URL which I'm
directly from an application I developed.
I've been told...the information can be provided by using something similar
to this:
www.mysite.com/registration.htm?xxx=Name
What I can't figure out is what the text box is called.
Any ideas Tag: Difficult? Tag: 62395
why does my html get moved
below is my index page, when i publish it something in FP 2003 is moving the
5 lines of script that are immediately before </body> to a place about 10
lines higher up the code, this is having the effect on the menu dropping into
the left hand border when the page loads rather than it being static, if i go
into a text editor and move the code back to the original place and ftp the
index page back to my website it displays the menu perfectly. the website is
http://www.crfc.net This error is causing me major problems in maintaining my
site as I have to keep manually editing the pages and ftp'ing them rather
than publishing. This error happens on all the linked pages and not just
index.
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<script language="javascript" src="/scripts/codethatsdk.js"></script>
<script language="javascript" src="/scripts/codethatmenupro.js"></script>
<script language="javascript1.2" src="/scripts/menu.js"></script>
<title>Clifton Rangers JFC</title>
<meta name="keywords" content="Clifton Rangers FC,Peter
Hoey,Reebok,crfc,brian street,blackpool junior football,clifton rangers
junior football club,parkinson and hartley ltd,topps tiles">
<meta name="description" content="junior football team">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<style>
<!--
div.Section1
{page:Section1;}
-->
</style>
<meta name="Microsoft Theme" content="ac_soccr 1111, default">
<meta name="Microsoft Border" content="tlr, default">
</head>
<body >
<p align="left"><b>Clifton Rangers JFC has been established
since 1977. The club exists
to promote football for all players, whatever their age, whatever their
standard, all are welcome. </b> </p>
<hr>
<div class="Section1">
<h2><font size="4">Chartered Standard of Excellence</font></h2>
<p align="justify"><font size="2">The future development of the club is to
be recognized for its commitment and
quality of developing players through the members, volunteers, coaches and
active parents. We are at present developing our club to meet a standard of
excellence.
</font> </p>
<p align="justify"><font size="2">The Football Association has a charter for
quality which sets out a code of
practice that represents the constitution of this club. It is the wish of
the club that by March 2006 we shall be awarded the charter of
quality as a chartered standard development club. improving at a local level,
attitude, technique and skill of all players at all levels.
</font> </p>
</div>
<hr>
<div class="Section1">
<p class="MsoNormal"><span lang="EN-GB">
</span></p>
<p class="MsoNormal">
<span lang="EN-GB" style="font-size:10.0pt;font-family:Arial">
</span>
</p>
<p class="MsoNormal">
<span lang="EN-GB"
style="font-size:10.0pt;font-family:Arial"> </a> </span></p>
<p class="MsoNormal"><b><span lang="EN-GB">
</span></b></div>
<hr>
<p> </p>
<p></p>
<p></p>
<p></p>
<p></p>
<center>
<a href="http://freelogs.com/stats/c/crfc/" target="_top"><img border="0"
alt="Free Web Counter"
src="http://xyz.freelogs.com/counter/index.php?u=crfc&s=scoreboard"
ALIGN="middle" HSPACE="4" VSPACE="2"></a><script
src=http://xyz.freelogs.com/counter/script.php?u=crfc></script>
<br><a style="font-size:12" href="http://www.freelogs.com/create.php"
target="_top"><font style="font-size:12" color="#666666">Free Hit
Counter</font></a>
<p>
<script>
menuTest1.run();
</script>
</p>
</body> Tag: Difficult? Tag: 62394
help with new form
I want to create a form in front page that will allow me to have parents sign
up for a specific time to see their child's teacher for a conference. I want
to have a parent sign up for a time and once they pick that time I want that
time slot to disappear and not be available any more, once someone requests a
time. I want it to be a first come first serve form elimating time slots as
they fill up!! Is something like that possible in frontpage forms? Does
any one know how to make such a form??? any help creating this would be
greatly appreciated Tag: Difficult? Tag: 62393
Transfering data from a VB app to a Form Text Box
I have a VB application where I have a couple of items I'd like automatically
transferred to several text boxes on a Front Page form. I can't seem to
figure out the correct URL to use to fill the text box with the required data.
Any suggestions Tag: Difficult? Tag: 62392