How can I add text to a textbox when I click a specific button.
For example if I click button1 (code below) I would like "button 1 has been clicked" added to textbox 1.
If I click button 2, I would like "button 2 has been clicked" added to textbox 1
Thank you
J
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Page Language="C#" %>
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta content="en-gb" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
<script>
function showDiv(one, second) {
document.getElementById(one).style ...
Go to the complete details ...