473,800 Members | 2,711 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Bable fish translation. form goes empty

106 New Member
Hi

I am using Bable fish for translating my site from english to greek. Every thing goes ok. but when I press submit button on any page to post data to server the form goes empty. I don't know what to do. I need some help.

Thanks.
Nov 30 '07 #1
4 2221
stepterr
157 New Member
Hi

I am using Bable fish for translating my site from english to greek. Every thing goes ok. but when I press submit button on any page to post data to server the form goes empty. I don't know what to do. I need some help.

Thanks.

Is the translation portion working and when the submit button is clicked is it actually capturing the information? If it is doing all of that then I would look to see if you are reloading the page and that's why it's clearing the form.
Dec 1 '07 #2
Hamayun Khan
106 New Member
Thanks for reply

let i explan.

I have login.php page. In the login.php page I have the following form.


<html><body>
<form name="frmadmin" method="post" action="login.p hp" onSubmit="retur n validate(this)" >

USER ID : <input name="username" id="username" type="text" size="14" class="textbox" >

PASSWORD: <input name="password" type="password" size="14" class="textbox" >

<input type="submit" value="Submit" name="B1" class="submit1" >

</form>
</body></html>

In the above form see the action parameter of form tag. It is set to login.php page. which is in the same folder. When I Load the above frmlogin.php page and view the source. the action is changed to



<form name=loginForm action=http://babelfish.altav ista.com/babelfish/trurl_pageconte nt
method=post>
<input type=hidden name="lp" value="en_el">
<input type=hidden name="trurl" value="valid url. eg http://www.yahoo.com/login.php">

USER ID : <input name="username" id="username" type="text" size="14" class="textbox" >

PASSWORD: <input name="password" type="password" size="14" class="textbox" >

<input type="submit" value="Submit" name="B1" class="submit1" >

</form>
Dec 3 '07 #3
Hamayun Khan
106 New Member
I m looking for some help
Dec 7 '07 #4
code green
1,726 Recognized Expert Top Contributor
I m looking for some help
Well you didn't exactly answer any of stepterr 's questions.
Instead you posted HTML code (without tags) along with an explanation that doesn't add up.
So the first form posts to itself
[HTML]I have login.php page. In the login.php page I have the following form.
<form name="frmadmin" method="post" action="login.p hp" onSubmit="retur n.."> [/HTML]
When I Load the above frmlogin.php page and view the source. the action is changed to
Where is frmlogin.php?
What do you mean the action is changed to?
Does altavista allow the following?
[HTML]<form name=loginForm action=http://babelfish.altav ista.com/babelfish/trurl_pageconte nt
method=post>
<input type=hidden name="lp" value="en_el">
<input type=hidden name="trurl" value="valid url. eg http://www.yahoo.com/login.php">[/HTML]It is interesting what you are trying to do, but I didn't know you can post a form to altavista,
Dec 7 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

18
2319
by: Stephanie | last post by:
I tried to create an email/contact form but i'am stuck. (i'am a php-newbie) Let me explain (sorry for my bad english, it's not my native language) I have a form with the required fields and the necessary php-code. There's also some code to validate if a field is empty or there's an invalid email address. But how can i display error messages (e.g. empty field), in this (same) form. (e.g. at the top of the page) I searching fore several...
7
5126
by: Steven T. Hatton | last post by:
Is there anything that gives a good description of how source code is converted into a translation unit, then object code, and then linked. I'm particularly interested in understanding why putting normal functions in header files results in multiple definition errors even when include guards are used. -- STH Hatton's Law: "There is only One inviolable Law" KDevelop: http://www.kdevelop.org SuSE: http://www.suse.com Mozilla:...
2
4100
by: Julia Baresch | last post by:
Hi everyone, As some of you may know, we've been having trouble with an unrecognized database format error. Today I installed an unfinished project on the workstation of one of my users. It's a query by form in which she enters the criteria of the record she wants in an unbound form, and it pulls only that record and switches to the entry form so she can enter data. I had noticed it was faster than find or filter, so I offered it to...
4
9871
by: Chris Croughton | last post by:
Does a translation unit have to have at least one externally visible declaration or function definition to be valid? As I read the standard, it doesn't: it must have at least one declaration or function definition, but they can be static, extern or even a typedef. 6.9 External definitions 1 translation-unit: external-declaration translation-unit external-declaration
9
1511
by: tiger79 | last post by:
Hi, I've been translating some API's from VB to C# for a couple of days now. Only I'm a real newbie to both languages, but I managed to do most of it except the next statements, so if anyone knows what the counterpart in C# is of those VB statements I would appreciate : Public Function (ok, public I know but what is a Function in C# ?) Public Enum
6
2883
by: dbuchanan | last post by:
VS2005 I've been reading all the help I can on the topic (MSDN, other) but I can't make sense of this. Desired behavior; The user is to choose from the displayed list of the databound combobox and the coresponding 'Id' from the lookup table is to be inserted into the field of the new record. I have two simple tables. "tblPerson" is the data table. The lookup
8
4488
by: alice | last post by:
I found this code for making a php email form for a web site. It works fine on my ISP, but not on my friends...could it be that my ISP uses php5, I know that hers does not, so I assume it's php4. Is there anyway to tell? Here's the code. It sends me email fine, but when it's on her ISP, it says it sent the mail, but nothing goes through. <?php if (isset($submit)) { switch ($recipient) { case "whole-family":
1
6218
by: G04 | last post by:
Hi All, I have a continuous form with all records. For each field there is a combo in the form header and the form also contains a Toggle button "Apply Filter". When clicked, it changes to "Cancel Filter". Then an SQL string with condition meeting the criteria input in the combo boxes is built. I have noticed that when certain fields are not filled in (no space, nothing), the record is simply not shown. The empty field is not necessarily...
7
5354
beacon
by: beacon | last post by:
Hi everybody, This may be an easy one, but I'm having a lot of trouble with it. I have a continuous form and I want to validate that the user has entered something in each of the required fields in the BeforeUpdate event for the form. This I can do...the fun part is that I want to do it in reverse so that when I call the SetFocus method, it goes to the first control that is empty as opposed to the last one. To loop forward, I've used...
0
9691
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10279
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10036
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9092
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7582
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6815
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5473
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5607
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4150
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.