473,395 Members | 1,403 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

input data in the table list

I use while-loop the show the table content in web page. e.g (bookingno,
booking date,customer no)
However, the client need me insert one column (confirmdate ) and allow the
user input and update the date .

It seems very hard to do .
Any one know how to do ?
Thanks a lot
Miss. Agnes Cheng


Jul 19 '05 #1
4 2496
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamictech.com.hk> wrote in message
news:OK*************@tk2msftngp13.phx.gbl...
I use while-loop the show the table content in web page. e.g (bookingno,
booking date,customer no)
However, the client need me insert one column (confirmdate ) and allow the
user input and update the date .

It seems very hard to do .
Any one know how to do ?
Thanks a lot
Miss. Agnes Cheng

Jul 19 '05 #2
I use recordset to display the data into a table format only. [use while
loop]
e.g bookingno, booking date, companyname ...etc
The user need me to insert one column (textbox) for him to input the data
(confirm date)
I don't know how give the textbox 'nameing'.

thanks

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> ¦b¶l¥ó
news:%2****************@TK2MSFTNGP10.phx.gbl ¤¤¼¶¼g...
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamictech.com.hk> wrote in message
news:OK*************@tk2msftngp13.phx.gbl...
I use while-loop the show the table content in web page. e.g (bookingno,
booking date,customer no)
However, the client need me insert one column (confirmdate ) and allow the user input and update the date .

It seems very hard to do .
Any one know how to do ?
Thanks a lot
Miss. Agnes Cheng


Jul 19 '05 #3
I'm sorry. I just don't understand. Do you have a link you can provide or
something?

Ray at home

"Agnes" <ag***@dynamictech.com.hk> wrote in message
news:e0*************@TK2MSFTNGP11.phx.gbl...
I use recordset to display the data into a table format only. [use while
loop]
e.g bookingno, booking date, companyname ...etc
The user need me to insert one column (textbox) for him to input the data
(confirm date)
I don't know how give the textbox 'nameing'.

thanks

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> ¦b¶l¥ó
news:%2****************@TK2MSFTNGP10.phx.gbl ¤¤¼¶¼g...
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamictech.com.hk> wrote in message
news:OK*************@tk2msftngp13.phx.gbl...
I use while-loop the show the table content in web page. e.g (bookingno, booking date,customer no)
However, the client need me insert one column (confirmdate ) and allow the user input and update the date .

It seems very hard to do .
Any one know how to do ?
Thanks a lot
Miss. Agnes Cheng



Jul 19 '05 #4
Hi,

You can do one thing, you can name the textbox field with the autonumber primary key of the column. For example:-

<% While not objRs.EOF %>
........
<input type="text" name="mytext<%=objRs("id")%>" size="20">
<% objRs.MoveNext
Wend %>

Then, when you submit the form, request the form field, you can loop it or if you know the id value u can do it as:-

i = Request.Form("i")
mytext = Request.Form("mytext"&i)

Hope this helps,

Regards,
Bhaskardeep Khaund

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message news:eZ**************@tk2msftngp13.phx.gbl...
I'm sorry. I just don't understand. Do you have a link you can provide or
something?

Ray at home

"Agnes" <ag***@dynamictech.com.hk> wrote in message
news:e0*************@TK2MSFTNGP11.phx.gbl...
I use recordset to display the data into a table format only. [use while
loop]
e.g bookingno, booking date, companyname ...etc
The user need me to insert one column (textbox) for him to input the data
(confirm date)
I don't know how give the textbox 'nameing'.

thanks

"Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> ¦b¶l¥ó
news:%2****************@TK2MSFTNGP10.phx.gbl ¤¤¼¶¼g...
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamictech.com.hk> wrote in message
news:OK*************@tk2msftngp13.phx.gbl...
I use while-loop the show the table content in web page. e.g (bookingno, booking date,customer no)
However, the client need me insert one column (confirmdate ) and allow the user input and update the date .

It seems very hard to do .
Any one know how to do ?
Thanks a lot
Miss. Agnes Cheng



Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: KathyB | last post by:
Hi, I'm trying to find a way to validate input text boxes where I don't know the names until the page is rendered. I've got 2 validate functions that fire with the onsubmit button of a "mini" form...
6
by: Robin S. | last post by:
**Eric and Salad - thank you both for the polite kick in the butt. I hope I've done a better job of explaining myself below. I am trying to produce a form to add products to a table (new...
7
by: F. Michael Miller | last post by:
I have a db with Access front end, sql back, linked tables. I need to be able to change input masks at the table level in code. Any ideas? Thanks!
1
by: Grey | last post by:
I have created a asp.net form for user to input data. After input the data, user need to click a button to export the input data to excel for data analysis with excel pivot table function. is it...
7
by: serge | last post by:
How can I run a single SP by asking multiple sales question either by using the logical operator AND for all the questions; or using the logical operator OR for all the questions. So it's always...
1
by: John_H | last post by:
Re: ASP.NET 2.0 I would like suggestions or code examples on how to collect a variable length list of input data (item# & item quantity specifically). I thought that I could accomplish this...
1
by: SkipNRun | last post by:
I am a novice when comes to JavaScript, AJAX. I am working on a form, which will allow users to update their contact information. In order to make the form flexible, I need to use pull down list. ...
1
by: Barb.Richards | last post by:
I have created an append query that pulls information from one database, and will append the selected information into a new table. The fields are setup like 'number' 'category' 'code' 'shares' and...
1
by: katwheels | last post by:
I need to convert a data element from a web page table into an MS Access input parameter and then run another MS Access query. I have an ASP web page that generates an MS Access query and creates...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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...

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.