Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: necta
  • Content: Threads
  • Order by date
  1. necta

    How to create dynamic table/ fields?

    I want to create dynamic table and its fileds by getting the field name from request.form. Can anyone show me how? Thanks
  2. necta

    Header Error

    I have this problem but i couldn't see the cause. What could be wrong? Response object error 'ASP 0156 : 80004005' Header Error /wemes/exmDel.asp, line 27 The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content...
  3. necta

    iis update problem

    I have problem insert/update sql statement in IIS (the statement…must be an updateable queries..) but not in win98. I wonder if anyone can help me with this. Thank you.
  4. necta

    display date problem

    I intend to display date in dd/mm/yy but the system show mm/dd/yyyy. I have set the system date to dd/mm/yyyy. I am using Window XP. What should I do? Necta
  5. necta

    If ...else problem

    Hi, everyone, I have the problem with if statement below: It keep asking for the 'Then' although i hv already put one, can anyone please help. If (gredRS("mrkMin") > Request.marks[i]) AND( gredRS("mrkMax") > Request.marks[i]) Then grd=Response.Write gredRS("grdID") Necta
  6. necta

    How to calculate form value

    I have a dynamic generated form fields which allow only number. I intent to calculate the total and average before submitting it to the database. The total is get by multiple the marks value with a credit and put it in totalMarks. The average is calculate after that and put the value on the...
  7. necta

    Validate field by field problem

    I have this validate field by field problem. I used the method below but the error "textfields.length not an object" appeared.I tried on marks.length, it also gave the same error.What have I done wrong? I used on blur to validate each field. The 'elements.length' work in checkbox but not here...
  8. necta

    validate checkbox

    How do I validate dynamic checkbox whether it is selected? How I get the name of the dynamic checkbox name? Thank you. <script language=javascript> //---------- // require that at least one checkbox be checked var selected = false; for (i = 0; i < theForm.frmNo[i].length; i++) { if...
  9. necta

    checked all dynamic generated checkboxes at once

    Hi, I have a list of checkboxes. When the top most checkbox is checked, all the checkboxes below it will be checked as well, just like what has in mail in yahoo. The checkboxes below the topmost is dynamically generated from record. I need a few pointers from the group members on how to get the...
  10. necta

    Directing users to web page according to their level

    My web site has 3 level of users. I) Admin which can access all the web pages. 2) staff which can access to the certain part of the user and 3) customer which can only access another part of web pages. Upon login, users are directed to those web pages according to their level. I understand...
  11. necta

    How to validate dynamic generated text fields field by field?

    I have a dynamic generated text fields for number input. I want to validate each field is numeric before submit it. However error occurred. I am not the sure whether the method I invoked the Sub us correct? What I have done wrong? Code snippet: <script language="VBSCript"> <!-- Sub...
  12. necta

    count (group by) problem

    I have a table below, I would like to count the eID by group to know how many eID group will 115 have. So, it is suppose to have 3 groups:X (1), Y(2) and z(1). In the end, recordcount will show there are 3 groups for eID refer to ID 115. TblX ID eID COUNT(eID) 115 X -------> 1 115 Y...
  13. necta

    onChage displays corresponding items in checkboxes problem..

    I have a drop down selection (<option>T1</option>...)menu, when onChange, a list of checkboxes items will b displayed according to the option selected below the option menu. How would I do that? I wonder VBSCript will be able to perform the duty. Thank you.

Part and Inventory Search

Back
Top