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

  • Users: markshen2004
  • Order by date
  1. markshen2004

    Using Checkbox JavaScript's onClick to Hide/Show other input field?

    I am doing a contact form (name, address,etc) I want to use a checkbox to control other mail form hidden/show. if address in contact form is same with address in mail form.I want to use checkbox checked to hidden the mail form.we only fill out contact form if address in contact form isn't same...
  2. markshen2004

    ASP jscript string function?

    which function can take part of sting var str="abcdef"; I want to get part of string.for example "abc".please give me a idea. Thanks a lot
  3. markshen2004

    automaticly submitted with enter in keyboard?

    I want to build a login page .that is like the link http://login.passport.net/uilogin.srf?id=2 when users press enter in keyboard, the form is automaticly submitted by the browser. do you know how to do it with javascript? Thanks
  4. markshen2004

    regular expression with Perl ?

    Hi there I need write a regular expression with Perl .I have to search according to the conditions. - 8 characters maximum - Position 1 (if it exist) -- numeric only - Position 2 (if it exist) -- alpha-numeric -- "1 - 0; A - R;" - Position 3 (if it exist) -- alpha-numeric -- "1 - 0; A - Z;"...
  5. markshen2004

    regular expression question?

    Hi there I need write a regular expression for ASP programming.I have to search according to the conditions. - 8 characters maximum - Position 1 (if it exist) -- numeric only - Position 2 (if it exist) -- alpha-numeric -- "1 - 0; A - R;" - Position 3 (if it exist) -- alpha-numeric -- "1 -...
  6. markshen2004

    trim a string?

    I have a tring with space.it is like this: string1=" test "; I want to take out the whitespace in left site and whitespace in right site . Please give me a idea how to do it.Thanks
  7. markshen2004

    Trim(string) in Jscript?

    The code doesn't work. what the $1 mean? May I use the same idea for JScript ASP programming.?I get data with whitespace from database and want to display them. Thanks
  8. markshen2004

    Trim(string) in Jscript?

    Trim(string) is a VBScript function? but I use jscript,please let me know the function in jscript that have same feature with Trim in vbscript. Thanks
  9. markshen2004

    How to check to see if a textbox ?

    How to check to see if a textbox is submited with some value. Please let me know if it is ok? Thanks sample code: if(document.loginform.name.value != ""){ .... }
  10. markshen2004

    how to check more condition in javascript

    if(a>b and c>d){ .... } or if(a>b || c>d){ .... } Thanks
  11. markshen2004

    ASP compare timestamps

    Sorry I do not understand what you mean. I want to a imagine showed on th site after 2004,Aug,25,8am and 30 minuite. do you know how to compare the time with current time? now() can get current time only. Thanks
  12. markshen2004

    ASP compare timestamps

    I want to need if ASP have function to generate timestamp and compare timestamps. I want to samething show after exactly time that include year,month,day,hour,minite and second. Thanks
  13. markshen2004

    Response.Redirect question

    The URL also change to new one on broswer when I redirect from one page to other by using Response.Redirect. Many I redirect current page to other page and keep the broswer URL unchanged. I remember ASP 3.0 have other mothed that have same function with Response.Redirect.but I can not remember...
  14. markshen2004

    link color change

    The link word change to blue and underline when I use it to link tag <a>.like this.the "link one" change to blue and underline. <a>link one</a> do you have a way to keep the word original color and no underline. Thanks
  15. markshen2004

    How to copy whole database from one server to other.

    I have a SQL server 2000 database in my computer.I want to copy the database to my office.the two server are in different location and no network connection.I only can copy the database by file. I try to generate SQL Script and run the script in other server.but I only can get table structure...
  16. markshen2004

    A drop down queation?

    I have a drop-down menu that like this. <select name="select"> <option>Group A</option> <option value="1">John</option> <option value="2">Tom</option> <option>Group B</option> <option value="3">Jim</option> <option value="4">Rob</option> </select> I do not like people to select...
  17. markshen2004

    Question for stored procedure and like %etc?

    Hi Friend, I write a sp and get a query for all the product beginning with the parameter passed to sp.but It do not work.I am not sure how to use like % is sp SELECT C.* FROM CustomerProduct C WHERE c.is_active=1 and part_number like '@partnum%' Please give me a idea...
  18. markshen2004

    validate the field for valid years

    I need a field to input the year,I hope the valid value is from 1990 to currect year. I need write a javascript to validate the field . Please give me a idea about it. Thanks a lot
  19. markshen2004

    How stored procedure to change order number?

    I like build other column to save the sort order and I also will update the sort id when I remove a record. Thanks
  20. markshen2004

    How stored procedure to change order number?

    Id is a primary key.I can not change it. I do not remeber if there is system variable like @@*** can get current record number when you use SQL select statement to list records. id(PK) name sort_order 9 John 9 16 Mark 16 27 Tony 27 45 Jim 45 Thanks

Part and Inventory Search

Back
Top