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 bkrike 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: perryair
  • Content: Threads
  • Order by date
  1. perryair

    Multiple official domain names

    Hi, I am running Sendmail on HPUX11 box with primary domain name... lets call it 'a.com' . everything works great until I have added new domain name in 'sendmail.cw' to receive for... lets call it 'b.com' . Now, when I send a test mail to 'user@b.com' , the Sendmail has accept this and forward...
  2. perryair

    submit input value

    Hi All, When I try to use <input type="image" src="img.gif" name="c" value="u"> It looks like the value="u" does not pass when I submit the form. Any idea?
  3. perryair

    Form submitting with query string along ASP page

    Hi, I have ASP page that contain 'Loop' query strings as shown below.. --------------------------------------------------------- <a href="query.asp?intCat=<%= rsInfo("cat")%>&prt=<%= rsInfo("number")%>"> <img border="0" src="<%= rsInfo("Img")%>"></td> <% rsInfo.MoveNext Loop %>...
  4. perryair

    'href' using javascript

    Guys, I'm trying to submit a form using javascript, the problem is that the 'href' is already connected to dynamic asp page that I make query on.. It looks like I need to create js that allow me to ran 2 commands at the same time. Any ideas? Here is the code.. <form action="query22.asp"...
  5. perryair

    'Loop' recordset and send by email

    Hi All, Below are the objMail that I need to send by email using ASPmail, when I send this form I receive only 1 record from the SQL database and it seems the 'rsProd.MoveNext' and 'wend' doesn't work properly. Can you point me to the right direction how to 'Loop' this recordset...
  6. perryair

    Calculate percentage

    Hi, I am using asp code in order to calculate non integer number.. any iday what the correct syntax is? 10 should be 10.5% <%= formatNumber((intTotal * .10), 2) %> Many Thanks...
  7. perryair

    How to query LDAP by UID

    Hi Guys, I am looking for ldap query string that will show me specific value (Extension-Attribute-6) by 'uid' objectclass.. I am using the following string but it show me all the users that existing on the address book.... strQuery= "<LDAP://" & strServername &...
  8. perryair

    Connection String (ASP - SQL)

    Hi, I have converted the MS Access connection string to SQL, when I try to access the page thru the SQL connection string I receive the following: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]SQL Server does not exist or access...
  9. perryair

    Passing data using ASP, problem

    Hi Guys, I'm trying to send particular data to another page and I can not understand where the problem is. The data that I can send is "ItemID", If I trying to get other column name (Desc) from the database I receive nothing. Thanks.. JS code: function tellafriend() {...
  10. perryair

    FEATURE(`accept_unresolvable_domains')

    Hi Guys, I am running HP-UX 9.x, I just added the line: FEATURE(`accept_unresolvable_domains') to the sendmail.mc file and also compile it by m4 script. when I send an email from unresolvable address it still shown the message: 451 4.1.8 Domain of sender address [email address] does not resolve...
  11. perryair

    How to display content from another web site

    Hello All.. Do you know how to display content from another web site..? I have the standrad code that display the entire page: <% Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP") objHTTP.Open "GET", "http://finance.yahoo.com/q?s=MSFT&d=t", false objHTTP.Send Response.Write...
  12. perryair

    Send page by email

    Hi.. I would like to make an option to send the current page by email, also called "Send to friend" . Can you point me to the right direction how to do it using javascript? Thanks.
  13. perryair

    &quot;Next Thread&quot; mechanism in ASP

    Hello.. I've got query page that pull records from SQL database, when I click on each record that shown on the screen it send me to another page that shows the record in view mode.. I would like to create 2 buttons that shows the last record and next record as like the "Next Thread" that can be...
  14. perryair

    &quot;Data Type&quot; in SQL 2000

    Hi, I would like to create column with data type of 'date' that will get updated automatically when updating the row so that I can 'SELECT' the newer item via ASP. Any idea how to start? Thanks
  15. perryair

    Command_text_was_not_set_for_the_command_object

    Hi... When I run the following code I receive the above error on line 9 (DB.Open). Any Idea? <% Dim DB, RS Set DB = Server.CreateObject("ADODB.Recordset") DB.activeconnection= ("DRIVER={SQL Server};SERVER=SQL2000;DATABASE=database1;UID=userid;PWD=password")...
  16. perryair

    Pull data from SQL using ASP

    Hi Guys... I need your help since I am stuck here with the following code... what I need is to display data from SQL database using ASP with '?' from another page. The '?' query is: http://mywebsite/showproduct.asp?ItemID= Please help... Thanks. <html> <head> <% Set...
  17. perryair

    Number validation (regular expression)

    I am trying to validate numeric characters but with no success, actually what I would need to validate is: min characters (9) max characters (11) the first character has to be (0) and the rest(0123456789) see my code below.. if(myValidation.Phone.value.length == 0) { alert("Phone is empty")...
  18. perryair

    EMAIL validation doesn't work...

    Hi... I am having problem with my script, I just added the email validation script and it does not work with the standard one... please help... <html dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1255"> <title>Send email</title> <script...
  19. perryair

    Prevent outgoing messages

    Hi.. Does anyone know how to prevent outgoing messages on specific mailbox? may be thru VB script? and how to clean up the Inbox folder on specific time.. Thanks..
  20. perryair

    Microsoft Outlook..

    Hi.. Does anyone know how to prevent outgoing messages on specific mailbox? may be thru VB script? and how to clean up the Inbox folder on specific time.. Thanks..

Part and Inventory Search

Back
Top