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 strongm 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: *

  1. nomu26

    insert date part

    can you give me an example then????
  2. nomu26

    insert date part

    i'm using SQL Server 2003
  3. nomu26

    insert date part

    i'm trying to insert part of the date in the database using the function 'DATEPART' with no success i only want to insert the day part not the whole date.... Please help i need to do this urgently Thanks in advance
  4. nomu26

    using arrays

    i did try using Datagrid but i was struggling, my form has to diplay more that 20 rows with 8 colums and on of the columns populate a dropdownlistbox and i was struggling to populate the listbox that why i chose to use html table, unless you can help me in using a datagrid
  5. nomu26

    using arrays

    it's not on a Datagrid format but a table format
  6. nomu26

    using arrays

    the table has created my problem is how do you insert the values in the database and when you opening the page how do you diplay the values on the form...
  7. nomu26

    using arrays

    how do i insert records in a table that has two-dimensional arrays... i've never used arrays if someone can help me with this one cheers
  8. nomu26

    Dropdown search query

    thank you so much BillyRay, i finally got it to work with your help ofcourse thanks a million
  9. nomu26

    Dropdown search query

    thanks for replying Billy but what i also want is to build the query in such a way that it works even if the user doesn't select all
  10. nomu26

    problem with search query string

    I have created a form to perform a search with dropdowns and textboxes, I want the user to select any search criteria, if all is selected it works fine but if you select some of the fields it return an error :Microsoft JScript runtime error: object doesn't support this property or method, here's...
  11. nomu26

    Dropdown search query

    I have created a form to perform a search with dropdowns and textboxes, I want the user to select any search criteria, if all is selected it works fine but if you select some of the fields it return an error :Microsoft JScript runtime error: object doesn't support this property or method, here's...
  12. nomu26

    populating dropdownlist colums inside datagrid

    thank you so much again Jennifer, but I still have a problem and now I'm not sure if I'm explaining this thing correctly I did every steps you showed me, what's happening is the Datagrid I'm creating all the fields come from one table except one field called 'Status' of which I'm trying to...
  13. nomu26

    populating dropdownlist colums inside datagrid

    thanks for the response Jennifer but can you look at my code below and tell me what I'm doing wrong cause the error I'm getting is: "DataBinder.Eval: 'System.Data.DataRowView' does not contain a property with the name Status." <asp:TemplateColumn HeaderText="Status"> <HeaderStyle...
  14. nomu26

    populating dropdownlist colums inside datagrid

    how do i populate a dropdownlist column in a datagrid?? pls help
  15. nomu26

    page count - asp

    thanks for the tip my brother but I'm also using asp.net it's just that this application I need help with was developed in asp and there's no way I'm gonna convert the whole thing now to .NET cause it's just this small problem I have and everything will work fine so if anyone could help me with...
  16. nomu26

    page count - asp

    I'm displaying records from a database and need only to display 20 records on a page - if records are more than 20 a link 'next20' and 'pre20' should display but it less the link shouldn't display. Here's my code tell me what I'm doing wrong: <%Const iPageSize = 20 dim LogInID, intPageCnt...
  17. nomu26

    dropdownlist change in asp.net

    I've created a dropdownlist which populates from the database and I need to validate three textboxed if &quot;Individual&quot; is selected but if anything other than individual the three textboxes must be freezed - I've done the code and tested it on the asp page by calling the function on the...
  18. nomu26

    problem validating postal code

    hi guys could you please help me I've done my script checking for input data but now I have a problem including checking for number validation in Postal Code field: here's my code and on the Postal code instead of checking for empty field I need to change it to validate number only: function...
  19. nomu26

    how do you enable the back button (aka: stop it from resubmitting form

    what you really want is to refresh the page after submitting the form and if that's the case try something life this: <script language=&quot;javascript&quot;> function returnReset(){ document.Form1.reset(); } </script> <body onload=&quot;javascript:returnReset();&quot;> </body>
  20. nomu26

    textbox change when it get focus - validation

    Thanks guys I've done the validations using javascript and it worked my problem is I need to include the style that will change the background of the textbox if there's an error, here's my script: <script language=&quot;javascript&quot;> <!-- function isformvalid() { //Load Vars from...

Part and Inventory Search

Back
Top