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 SkipVought 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. mhamlett

    Add Default Value to TexBox in ListView ASP.NET

    I have tried many solutions found online that seemed to work for others but not working for me, can someone please tell me if there is something else I have to do to make this work? I simply need to add default value to TextBox when using ListView. online example 1: protected void...
  2. mhamlett

    Concatenate String Formula ?

    There will be more than 3 at times. Thanks for the quick feedback but I may actually go a different route to accomplish my needs, is there a way to create a unique text field next to each data field? example data............unique_text1 data............unique_text2 data............unique_text3...
  3. mhamlett

    From Date To Date Return Total Hours ASP.NET FORM

    Can you give an example using my layout or any example at all with code behind?
  4. mhamlett

    Concatenate String Formula ?

    I'm not sure the formula I need, hopefully someone can give me advice and point me in the right direction. Field_______________ Field2 example1.................. red example1.................. blue example1.................. green example2.................. red example2.................. green...
  5. mhamlett

    From Date To Date Return Total Hours ASP.NET FORM

    Below is my code and it simply renders 2 textboxes and a button. The first textbox value will be "FROM DATE" and the second textbox value will be "TO DATE". The database table has a column for Hours and a Column for Date. When the end user submits their entry, I would like to return the total...
  6. mhamlett

    How to Insert multiple rows of data (at once) into existing Database Table

    That worked GREAT! What if I need to have one of those columns 'auto-number' and I cannot use primary key for this because I will have several different INSERTS that will have replicated values?
  7. mhamlett

    Add Multiple Column Entries to Database Table at 1 time

    SELECT TOP 500 '12345' AS Column1 ,'Testing' AS Column2 ,'Testing' AS Column3 ,'Testing' AS Column4 FROM sys.all_objects I have someone from another forum helping me out and he gave me this script, which does insert the data just as I needed but I will have to figure out how to program...
  8. mhamlett

    How to Insert multiple rows of data (at once) into existing Database Table

    Jim Thanks for your help with this! This script does create the columns just as I needed, but I cannot figure out how to run script on an existing table so that the data is inserted into the columns under specified table. Thanks
  9. mhamlett

    How to Insert multiple rows of data (at once) into existing Database Table

    Hello I am looking to add multiple column entries to existing database table by way of script, i.e.; Column1-- Column2-- Column3-- Column4 12345----- Testing---- Testing---- Testing How can I repeat/input this exact data for 500 rows in a single script? The End User will be using a form...
  10. mhamlett

    Add Multiple Column Entries to Database Table at 1 time

    Hello I am looking to add multiple column entries to existing database table by way of script, i.e.; Column1-- Column2-- Column3-- Column4 12345----- Testing---- Testing---- Testing How can I repeat/input this exact data for 500 rows in a single script? The End User will be...

Part and Inventory Search

Back
Top