Wrox Programmer Forums
|
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Dreamweaver (all versions) section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 27th, 2005, 06:15 AM
Friend of Wrox
 
Join Date: May 2005
Posts: 201
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to hastikeyvan
Default sending values to texbox

i have some arrow images i want to send their names to my textbox
is this coding right or wrong?i would be very thankfull to have your answers:
<input type="image" src="Imagepic2.gif" width="21" height="17" name="Marand" alt="Marand">
              <script for="Marand" language="VBScript" event="Onclick">
              t1.value="Marand"
              </script>
and the textboxname is t1:
<input type="text" name="t1">
thank you

 
Old September 27th, 2005, 07:59 AM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

You're the best person to determine if this is wrong or not. Does it work? If not, do you get an error?

You can shorten things a bit (and fix the t1.value problem) with the following code:
Code:
<input type="image" src="Imagepic2.gif" width="21" height="17" 
    name="Marand" alt="Marand" onclick="document.getElementById('t1').value='Marand';" />

<input type="text" name="t1">
HtH,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.





Similar Threads
Thread Thread Starter Forum Replies Last Post
problem sending values into SQL Server Proc lisabb ASP.NET 2.0 Basics 2 May 23rd, 2007 01:19 PM
texbox update in Datagrid msrnivas General .NET 1 June 1st, 2005 01:46 AM
Problem in sending arabic values in email using CD Basma Classic ASP Components 1 October 11th, 2004 05:34 PM
Retrieving value from Datagrid texbox eli2003 ASP.NET 1.0 and 1.1 Basics 2 September 3rd, 2003 03:36 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.