Jump to content

jlbantang

Banned
  • Posts

    2
  • Joined

  • Last visited

jlbantang's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. im using ajax(same example from w3schools) to refresh combo box list and it all work fine. but when i tried to dislpay a single data to textbox it wont do the thing.code snippet set from .asp file after ajax initialize:1. to load combo box listresponse.write("<option> cbo list value goes here </option>")this work fine if im going to load the data to combo box2. heres my nightmareresponse.write("<value='txtbox value goes here'>or thisresponse.write("<value>txtbox value goes here</value>")really ned help... thnx
  2. im using AJAX to fetch rows in msaccess database and load it in combo box list everything work fine. i used the same sample/idea in w3schools. now the prob that let my hair falling is how can i display a fetch row to a textbox. i did use the same idea in fetching rows and have it listed in combo box but in text box its a big NO NO NO...im using this statement from .asp for loading list to combo boxresponse.write("<option>combo value goes here</option>")and i've tried the following statements to display a value to textbox1] response.write("<value>textbox value goes here</value>")2] response.write("textbox value goes here")3] response.Write(document.myform.textboxname.value=123456)
×
×
  • Create New...