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: Itron
  • Order by date
  1. Itron

    array

    Hi 100dtl, As correctly suggested by GaryC123,the you refer to an array, which gets it data after Getrows() method , in the form of Arr(numcol,numrow) where numcol is the nth column and numrow is the nth row.Hope it is clear till now. Now here is how you get the data from the database :-...
  2. Itron

    inseting an id as hidden field - Urgent, please!

    Hi, In forms ,we have provision for hidden fields which is specified as <INPUT TYPE =&quot;HIDDEN&quot; NAME=&quot;ITRON&quot; VALUE=&quot;ID VALUE&quot;> When you submit the form,you can retrieve the value by writing Request.Form(&quot;ITRON&quot;),this retrieves the value assigned to the...
  3. Itron

    Script Error

    Hi, If I am not wrong ,Recordset1 in Recordset1.ActiveConnection = MM_tp_STRING; is a recordset object and ActiveConnection is a property of command object and not recordset object Regards Tushar
  4. Itron

    error 80004005

    Hi RakhiKalra , Please check the name of the databse.Are you opening and closing the database at multipple places in your program ? Regards Tushar
  5. Itron

    Read from TOP again after reaching END-OF-FILE

    For a sequentail files,whenever we isssue a READ statement after we open the file,the pointer poistions itself to the next record.Simply changing the status of the EOF will have no effect on the pointer.So what we can do is, we can put the function of opening the file in a seperate paragraph and...
  6. Itron

    Response.ContentType = &quot;application/msword&quot; opening in html format

    Hi Rama Krishna B., I suggest that you direct the output first to a text file and then redirect the output of that file to a word document. The reason that you are being shown HTML code is because if you observe that the output you are seeing is being generated by an ASP script which is...
  7. Itron

    FileSystemObject

    Hi asunpraise, I would advis you to change your Server.Mappath(&quot;log.txt&quot;) to Server.Mappath(&quot;\foldername\log.txt&quot;).See if it works for you. Regards Tushar
  8. Itron

    How to break one string in two

    Hi QueenP, Try using Split function which will help you to split string based on some character like &quot;!&quot;.I am soory I just cannot recollect the sysntax but you will find it on any search engine.Hope this works well Regards Tush
  9. Itron

    Redirecting user if session times out

    Hi Brian just add this one line to the head section of your asp script <META HTTP-EQUIV=&quot;REFRESH&quot; CONTENT=&quot;x; URL=test1.html&quot;> where x=Session time out in seconds and test1 is the page you want the users to be directed. Hope this works well Regards Tushar

Part and Inventory Search

Back
Top