How do I stop my e-mail subscription?
General Web-programming
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > General Web-programmingGo to page: « previous | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | next »

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:
Saturday, 21 June 2008
Forms with FP 2003 Izod 19:23:04
 Now according to the form property tab, I should be able to
put in an email address and have
a copy of the form sent to me or anyone's email address
after user fills it out. I cannot get it to work. I've got
FP Extensions on the host and here is the message I continue
to get.

Cannot run the FrontPage Server Extensions on this page:
"http://traileresta­tesflorida.com/test_­form.htm"
--

Isn't this suppose to work? I've ask the Host but they keep
me running around and not answering me direct. They have
php and mysql. Do I have to do server side scripts to do
this? Thanks.

Izod


comment 2 answer | Add comment
IE7 window.open and resizeby problem Mike McCollister 13:51:06
 I have a JavaScript function that I use to open up an image in a popup
window when someone clicks on an image. It works fine in IE6 but in IE7 when
I try to do a resizeBy to resize the window due to the scrollbar height the
image does not come up sometimes. Does anyone know how to fix this?

I've included my function. below.

Thanks,

Mike

function DisplayImage(image,­ width, height, title, date)
{
var newWin;
var winName;
var title2 = unescape(title);
var newTitle = title2;
var newDate;
var ieVersion = GetInternetExplorer­Version();

html = "";

title2 = "some code remove here";

html += "<html>" + endl;
html += "<head>" + endl;
html += "<title>" + newTitle + ": " + newDate + "</title>" + endl;
html += "</head>" + endl;
html += "<script>" + endl;
html += "function PlaySound(url) {html += document.all.sound.­src =
url;}";
html += "</script>" + endl;
html += "<body bgcolor='#FFFFFF' topmargin='0' leftmargin='0' " +
"marginheight='0' marginwidth='0'>" + endl;
html += "<p align='center'>" + endl;
html += "<a href='javascript:wi­ndow.close()'>" +
"<img src='" + imageDir + "/" + image + "' width='" + width +
"' height='" + height + "' alt='' " +
"title='Click to Close Window' border='0'></a>" + endl;
html += "</p>" + endl;
html += "<font face='Arial'>" + endl;
html += "<p align='center'><b>"­ + title2 + "</b><br>" + endl;
html += date + "</p><p></p>" + endl;
html += "</font>" + endl;
html += "</body>" + endl;
html += "</html>";

newWin = window.open("", "photoWindow", //winName,
"width=" + width +
",height=" + height +
",menubar=yes" +
",resizable=yes" +
",scrollbars=yes",
true);

// resize window only for Microsoft Internet Explorer
if(navigator.appNam­e == "Microsoft Internet Explorer")
{
// ???? PROBLEMS HERE IN IE7 ?????
if((ieVersion >= 4) && (ieVersion <= 6))
{
// I don't know why this needs to be done
newWin.document.wri­teln("<html><body></­body></html>");

// do the resize
newWin.resizeBy(wid­th - newWin.document.bod­y.clientWidth,
height - newWin.document.bod­y.clientHeight);
}
}

newWin.document.wri­teln(html);
newWin.document.clo­se();
newWin.focus();
}


comment 2 answer | Add comment
Thursday, 19 June 2008
Problems with photogallery - FP extension 2003 Bill 16:35:14
 Hello,

I have a web site that uses frontpage extensions 2003. When I add a
photogallery it seems to work fine from within frontpage. However when I
publish my site (to a web site on my local system or to a remote web site)
all I get when I go to the photogallery page is a single line of text giving
the url to real.htm.
[/photogallery/photo00021505/real.htm]

Anyone have any ideas on what the problem could be?

Thanks,
Bill


comment 2 answer | Add comment
FP Site Help James Odom 11:28:20
 I have a web site that i use FP with and on the navation bar i have 2 top
level pages. I would k=like to create 2 sites under the same domain name. is
there a was to stop having to type the .htm with the second page as the main
will do it because it is defalt. i would like to be able to give the web site
as www.whatevery.com/f­ire. or if some one would tell me how to get it to do
www.wahtevery.fire.­com would be great
comment 1 answer | Add comment
Sunday, 15 June 2008
Making calculations in web page DK Stevenson 20:02:57
 Is there any way to perform calculations on a web page using forms and text
boxes for the viewer to enter information. Then having the answer appear
within the same form. Not knowing VB or javascript, I was looking for a way
to do this right on FP.

Any help or suggestions would be greatly appreciated!
comment 4 answer | Add comment
Saturday, 14 June 2008
Another Registration qustion Izod 18:27:09
 Can I use FP to have a password sent to the responders email
address. I would like to
verify the email address. I see some sites are set up to do
that. Do I have to do
coding? or are the templates already there?

Izod


comment 4 answer | Add comment
protecting images on the web D. Hudson 18:25:04
 I run windows XP Pro and Office 02 XP. On my web site for hobby photography
I'm trying to protect my images. I have figured out the code to stop right
clicking. The problem I have is this- The right click protection only works
on my thumbnails. If you click the thumbnail to enlarge the image you're
then able to right click and save the enlarged image. What is the code to
protect the image after it's been clicked on, and does it go in the header
too?
Here's a link to one of my page if you want to see what I mean.
http://www.just4fun­photos.com/Craig%20M­organ.htm
Thanks,
Dennis


comment 3 answer | Add comment
Friday, 13 June 2008
How to capture page title Terry 16:40:00
 Here is my problem. I would like to add a button on a web page that will do
two things. First capture the page title Second open a form and paste (or
fill in the captured data to one of the fields. New to front page please
provide as much detail as possible.. Thank you in advance for your help or
suggestions
FrontPage 2003
--
Terry
comment 7 answers | Add comment
Thursday, 12 June 2008
Permission on Sub_Web Izod 18:52:20
 I am trying to use the registration template. So I set up a
SubWeb requiring registration with permissions.

Now, I would like to link direct to a page inside the subweb
from the root web and require the viewer to register if they
haven't already done so. When I link direct it by passes
the registration requirement. Do I have to work around
that or am I doing something wrong???

Izod

--



comment 7 answers | Add comment
Wednesday, 11 June 2008
Hide text and entry fields under certain conditions RColes 19:39:29
 I wish to use the same page for several tasks. When I go to the page, how
can I hide text and fields under certain conditions (i.e., hide if
session("switch") = 1 and show if session("switch") <> 1? There are times
that some instructions and entry fields are not needed. This is determined
by the page preceeding this one (i.e. under conditions I know about before i
get to that page).

For security sake, we will provide you with a folder to hold any files you
create from our data and programs you wish to write.
Enter Folder Name in text box (Less than 11 characters)


comment 1 answer | Add comment
Swaping link and text Guest 13:25:30
 Hi
I have a floating div script but need a link to show and hide it on
our site. At present i can use the two links below

<p><a href="javascript:sh­owMe();">Show mini basket</a>
<p><a href="javascript:hi­deMe();">Hide mini basket</a>

But it would be nice to have them combined in to one link that changes
properties and text on click. My Java/CSS is not great but any help
would be very much appreciated.

Simon B
comment 11 answers | Add comment
Saving results from a Form to a database Joe 03:40:44
 We created a page with a number of the standard fields on it - User Name,
Password, Full Name, etc...
In the form properties we picked Send to Database. The database was created
with a results table. All the fields seem to be mapped correctly but when we
try the page out nothing ever gets written to the table.

Is there another option or permission that needs to be set? We don't seem to
be getting any errors.

Thanks for any help,
Joe


comment 5 answers | Add comment
Tuesday, 10 June 2008
Database Result table. Lost 22:32:18
 I am using FP2003. I am generating a Database result with the categories in
a 3x4 table and in a single column list. How can I make that list generate
in a 2 column list?

IE.

1 2
3 4
5 6.

Thanks in advance.
comment 1 answer | Add comment
Re: Drop down boxes Ronx 12:11:15
 Any error messages?
Are you testing in a browser or in FrontPage Preview?
Are you using Windows XP SP2?
Have you saved the page before testing it?

Following the instructions in that article should result in a page
that either works, or gives an error message.

Can you post the code you have written here (from the <body> tag)
Seeing the code being used will help diagnose the problem

--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"yvlt" <yvlt@discussions.m­icrosoft.com> wrote in message
news:1A5C2EDF-750E-­48D7-AC6E-84DFB11F99­1D@microsoft.com...>­I viewed the answers to other posted questions regarding drop down >boxes in> FP2003. I followed the link See> www.interlacken.com­/winnt/tips/tipshow.­aspx?tip=28 and the > directions but I> nothing seems to work. Specifically, when I mouseover the main menu > command> my first leaf should appear but nothing happens. I am diskbased now > and> can't post yet (too many errors on site w/r/t main menu bar). I am > not using> a navigation link bar I developed a hyperlink table instead (as per > the> instructions) Can you help?> YVLT>


comment 5 answers | Add comment
Monday, 9 June 2008
Multiple Users FrontPage 12:18:42
 I have a DRW application where I would like to allow multiple authorized
users to edit their info, but I only want them to have access to their own
info.

Can I have multiple logins using DRW?

Thanks
John P.


comment 1 answer | Add comment
Friday, 6 June 2008
Dumb Question #2 Jim K 23:03:04
 I am a beginner and I am developing a webpage but the site does not display
correctly on all monitors. On wide monitors (the site was developed on wide
LCD monitors and the site looks fine if the visitor is using a wide screen.
If the user is not using a wide screen, then the right portion of the screen
is truncated. I suppose there is some method of ascertaining if the visitor
is using a wide screen or not and make resolution changes accordingly.
Can anyone help me?
Thanks in advance,
Jim


comment 1 answer | Add comment
Editing gallery? Lars Christensen 22:16:59
 Hello.

I'm hoping for help from this Forum, as this problem really puzzles
me.

I have had problems with editing the galleries I have on my website.
The error came after my Frontpagefiles got messed up. (Probably my
error) So I decided to download the entire site from the server and
save it locally instead of the messed up files. Since then, the
galleries in Frontpage, turned into a lot of frames with text and
pictures. But not the usual guide for galleries in Frontpage.

I can create new galleries, but it is a good deal of work to make my
galleries again.

Thanks very much up front for any help from here.

Regards

Lars Christensen Lars
www.larchris.dk
Add comment
CALLING OR RUNNING A DOS PROGRAM FROM A WEBSITE Pepper 21:35:35
 I need to run a mission critical dos program from a website for others to
use. I can run the program no problem on the server, but the client gets the
following error:

"Invalid startup directory, please check your PIF file"

thanks for your help!
comment 1 answer | Add comment
How do I optimize my site with Frontpage 2000? Richard 12:07:03
 How do I optimize my site with Frontpage 2000?

Where is some good info on optimizing my site?

Richard


comment 3 answer | Add comment
Navigate back to root index? Izod 02:35:12
 From the root index I link to a sub_site folder to allow the
view to view the video.
I want to allow them to cancel and go back to the root
index.

When I link to it, it simple opens up another index page.
Now I have to open. I simply
want to give them a chance to cancel or return to the root
index.

How do I do that? I don't want them to use the "X". I want
to guide them.

--
Izod


comment 4 answer | Add comment
Email a form in FP2003 Emailcrazy 01:49:25
 I have spent hours tring to find why a form can not by emailed to me. Can
anyone help? I get these errors messages...

The form can not be configured to send email. the web site may be located at
a disk-based location. or on a server that has not been configured to send
email.

and

HTTP 403.3

I have done everything I know to do and so has my IT department.

Thanks


comment 12 answers | Add comment
Wednesday, 4 June 2008
Can I use Button-form to move to an another page on my pages? Sauli 16:38:41
 Hi,

I'm trying to create a simple form to index-page mostly to seem as you have
to know the password in order to get to my pages, including text box as
password field and Log In-button to move to next page.

I have validated the text box field that it has to be equal to "password",
and Log in button like it was a hyperlink to next page. I cannot manage to
get the hyperlink work even if there was only this button (without text box)
and by clicking it you'd get to next page. Now I'm wondering if it's even
possible to use buttons like this, like hyperlinks? And would it be possible
to make this kind of "password field" work?

Regars,
Satu U.

comment 2 answer | Add comment
My pages are too slow Dutchie2008 01:31:33
 Hi,

I have managed to create my first website with FrontPage 2003. It contains
pictures and inl ine frames. All my images are less than ....... I noticed
that my pages were very slow. In the reports section I noticed that quite a
few pages were listed as slow. How can I improve this? is there a function in
FP2003 that I should be using?

You can check ik out: http://www.bestofyo­urself.com/zkIntro.h­tm

Really appreciate your help!

--
Thanks from a newbe,

Dutchie
comment 1 answer | Add comment
Tuesday, 3 June 2008
session variable in url Led 18:00:06
 hello.
what is the sintaxe for writing a session variable in the list of link
parameters.
I use :
<a
href="results_mes.a­sp?cod_casa=<%sessio­n("codcasa")%>&nm_me­s=<%session("nmmes")­%>">seleccionar
outro periodo</a>

and doesnt work
why?
thanks



comment 2 answer | Add comment

Add new topic:

How:  Register )
 
Login:   Password:   
Comments by: Premoderation:
Topic:
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > General Web-programmingGo to page: « previous | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | next »

see also:
[PHP-DEV] CVS Account Request: dede
[PHP-DEV] CVS Account Request: janwb
[PHP-DEV] ZSTR cast to union not…
pass tests:
see also:
Helpful: Share an easy way to rip DVD…
How to Put DVD Movies on iPod, iPod…

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .