473,587 Members | 2,579 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2504
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamict ech.com.hk> wrote in message
news:OK******** *****@tk2msftng p13.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******** ********@TK2MSF TNGP10.phx.gbl ¤¤¼¶¼g...
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamict ech.com.hk> wrote in message
news:OK******** *****@tk2msftng p13.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***@dynamict ech.com.hk> wrote in message
news:e0******** *****@TK2MSFTNG P11.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******** ********@TK2MSF TNGP10.phx.gbl ¤¤¼¶¼g...
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamict ech.com.hk> wrote in message
news:OK******** *****@tk2msftng p13.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("m ytext"&i)

Hope this helps,

Regards,
Bhaskardeep Khaund

"Ray at <%=sLocation% >" <myfirstname at lane 34 . komm> wrote in message news:eZ******** ******@tk2msftn gp13.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***@dynamict ech.com.hk> wrote in message
news:e0******** *****@TK2MSFTNG P11.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******** ********@TK2MSF TNGP10.phx.gbl ¤¤¼¶¼g...
What part are you stuck on?

Ray at home

"Agnes" <ag***@dynamict ech.com.hk> wrote in message
news:OK******** *****@tk2msftng p13.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
5164
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 within the html document. When the Finish button is clicked, I need to check for any empty input boxes before loading the next aspx page...but it...
6
2497
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 products). Tables: tblCategoryDetails CategoryID SpecID
7
7038
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
3134
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 possible to do that?? if so, any sample for me as i am a new in designing pivot table with asp.net million thanks
7
3379
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 either AND or OR but never mixed together. We can use Northwind database for my question, it is very similar to the structure of the problem on the...
1
3853
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 using a GridView that has ViewState enabled, an ObjectDataSource to process the submitted list, textboxes for getting new item data and an add button. ...
1
3986
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. Depends on the pull down list selection, I use script.aculo.us to validate the user input before submit and pass the necessary data, such as contact...
1
2843
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 'dollars'. Using the "backend" of this table I can filter the numbers by right clicking and using Filter For: then enter 1 or 2 or 3 and this...
1
2248
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 a table on a webpage. This code generates the field1 value on the original table. If Request.querystring("mode") = "table1" then userID =...
0
7843
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8206
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8340
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
8220
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6621
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5713
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
1
2353
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1452
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1185
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.