Forum: JSP Oct 27th, 2005 |
| Replies: 2 Views: 8,592 I have 2 text field in a form.
1st field for input date.
I want to use onclick event handler for 2nd text field. When user click 2nd text field then show up the value of 10 days before the input... |
Forum: MS SQL Oct 26th, 2005 |
| Replies: 5 Views: 72,234 How do i insert multiple rows in database.
for example: I have 3 list:
list1: a1,a2,a3,a4
list2: b1,b2,b3,b4
list3: c1,c2,c3,c4
I want to insert a1,b1,c1 in 1st row. a2,b2,c2 in 2nd row,...... |
Forum: ColdFusion Oct 23rd, 2005 |
| Replies: 3 Views: 7,061 window sql server 2000. and I use coldfusion to create the rest of the form. |
Forum: ColdFusion Oct 23rd, 2005 |
| Replies: 3 Views: 7,061 I have write javascript to create form field when button is click.
function addEvent(myTable){
var lastRow = myTable.rows.length;
var x1=myTable.insertRow(lastRow);
var a=x1.insertCell(0);... |