![]() |
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 |
Re: input data in the table list
What part are you stuck on?
Ray at home "Agnes" <agnes@dynamictech.com.hk> wrote in message news:OKn6JoitDHA.628@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 > > > > |
Re: input data in the table list
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> 在郵件 news:%23XRVCBltDHA.2132@TK2MSFTNGP10.phx.gbl 中撰寫... > What part are you stuck on? > > Ray at home > > "Agnes" <agnes@dynamictech.com.hk> wrote in message > news:OKn6JoitDHA.628@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 > > > > > > > > > > |
Re: input data in the table list
I'm sorry. I just don't understand. Do you have a link you can provide or
something? Ray at home "Agnes" <agnes@dynamictech.com.hk> wrote in message news:e0LOCxotDHA.700@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> 在郵件 > news:%23XRVCBltDHA.2132@TK2MSFTNGP10.phx.gbl 中撰寫... > > What part are you stuck on? > > > > Ray at home > > > > "Agnes" <agnes@dynamictech.com.hk> wrote in message > > news:OKn6JoitDHA.628@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 > > > > > > > > > > > > > > > > > > |
Re: input data in the table list
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:eZQJ6YqtDHA.2304@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" <agnes@dynamictech.com.hk> wrote in message news:e0LOCxotDHA.700@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> 在郵件 > news:%23XRVCBltDHA.2132@TK2MSFTNGP10.phx.gbl 中撰寫... > > What part are you stuck on? > > > > Ray at home > > > > "Agnes" <agnes@dynamictech.com.hk> wrote in message > > news:OKn6JoitDHA.628@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 > > > > > > > > > > > > > > > > > > |
| All times are GMT. The time now is 10:32 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.