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 Chriss Miller 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: Rachel80
  • Content: Threads
  • Order by date
  1. Rachel80

    validation for spaces

    Hi, I'm trying to validate some mandatory fields to be non-spaces input. I tried isEmpty() but it regard the spaces as 'empty'. Thus spaces are still submitted; I want client-side validation for these fields. Pls help, thanx!
  2. Rachel80

    How to validate an array of checkboxes named in ASP?

    Hi, i have an array of 19 checkboxes as follows: <% dim temp_id(19) for i=0 to 18 temp_id(i) = &quot;id&quot; & i next for j=0 to 18 %> <input type=&quot;text&quot; name=&quot;<%=temp_id(j)%>&quot; size=15 maxlength=&quot;20&quot;> <% next %> As shown, each checkbox has a...
  3. Rachel80

    File Upload Error: Cannot call BinaryRead

    Hi, I'm using a sample (upload.asp) downloaded from http://www.asp101.com/articles/jacob/scriptupload.asp to try uploading files to a specified folder.. The sample works fine but not after integration with my code :-( I get the following error: Request object error 'ASP 0206 : 80004005'...
  4. Rachel80

    Files Upload

    Hi, 1) I'm trying to do simple file(images & html) upload function.. saw several website for the upload file tutorial and found different versions (some very long codings..). I wish to use non-proprietary file uploading methods. 2) when i get the path from the <input type=&quot;file&quot;>...
  5. Rachel80

    Replacing all special characters before inserting into SQL

    Hi, I have some textarea form fields to allow user to enter any text.. using ASP and MS Access. Thus I need to replace all commas, apostrophes, single-quotes double-quotes and special characters etc with something(perhaps with ASCII values??) in the text variable before i execute the INSERT...
  6. Rachel80

    How to check if variable exist in an ASP page?

    Hi, I've used Coldfusion before and it has an in-built function to check for the existence of a variable.. As I need this function as well, I wonder if I could do similar checking in ASP?? Is to check if the variable is defined, then display something on the page.. THanx!
  7. Rachel80

    Reading from &amp; writing to files using Applets

    Hi, I was stuck with the following question.. appreciates any help ;) Q: Create a simple text file using Notepad and enter a number on a single line. Write a Java applet that will read the file, increase the number by 1, write the new value to the file and display the new number on the screen...
  8. Rachel80

    How to prevent others from downloading html page

    i have a homepage where i uploaded many photos but i dun wish to let visitors download them (such as right-clicking the mouse and click 'Save Image As'). I wanna trigger a Javascript alert message upon detecting the mouse(right-clicking) so as to inform the visitor that contents of the site...
  9. Rachel80

    session variables in page refresh

    Hi, I encountered the inability to use session variables while doing a page refresh.. the values stored in the session are lost! Hence I gotta past the value whenever i refresh the page: <a href=&quot;page.asp?var=4&quot;> What can I do to retain the values?
  10. Rachel80

    There's a select option to choose from(1). Upon clicking any of the op

    There's a select option to choose from(1). Upon clicking any of the options will trigger a JS function(2) to display the corresponding value on another input box(3) <br>------------------------------------------------------------<br>(1)<br>&lt;tr&gt;<br>&lt;td&gt;Payment...
  11. Rachel80

    How to use &lt;cfauthenticate&gt;?

    Hi, i read the manual on &lt;CFAUTHENTICATE&gt;..<br>but i still do not know how to implement it!<br><br>&lt;!--- This example shows the use of CFAUTHENTICATE<br>in an Application.cfm file ---&gt;<br>&lt;CFIF NOT...
  12. Rachel80

    Information/resources on CGI

    I know nothing about Common Gateway Interface but I would like to learn something about it.. May I know if there's any sites that provide tutorials on CGI stuffs?? or can anybody explain that in detail to me? <br>THanks a million for your kind help!!
  13. Rachel80

    Information/resources on CGI

    I know nothing about Common Gateway Interface but I would like to learn something about it.. May I know if there's any sites that provide tutorials on CGI stuffs?? or can anybody explain that in detail to me? <br>THanks a million for your kind help!!
  14. Rachel80

    Hit Highlighting of SQL Content Search Results

    I found the following coding in the Index Server 2.0 Sample Navigation Frameset from Microsoft Index Server:<br><br>&lt;%<br>Set Conn = Server.CreateObject(&quot;ADODB.Connection&quot;)<br>Conn.ConnectionString =&nbsp;&nbsp;&quot;provider=msidxs;&quot;<br>Conn.Open<br>Set AdoCommand =...
  15. Rachel80

    "trim" strings or sentences from text??

    Sample coding: <br><br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;cfquery name=&quot;approve&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;datasource=&quot;spg_DB&quot;<br>...
  16. Rachel80

    CFCOOKIE expires="NOW" does not work

    This is the sample coding:<br><br>&lt;cfif isdefined(&quot;cookie.icode&quot;)&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;cfquery name=&quot;cancel&quot;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;datasource=&quot;spg_DB&quot;<br>...
  17. Rachel80

    OPEN FILE WITHOUT CLICKING ON URL

    after uploading a word/excel/ppoint file, the next page should display the uploaded material. but there's no &lt;a href&gt; link to open the file! in the database, is the pathname of the file. the next page can only retrieve pathname(data) from the SQL table & display the field value, which is...
  18. Rachel80

    &lt;CFFILE ACTION="UPLOAD" .....&gt;

    I've no problem with uploading files into my local directory(drive C:). But what I need is to upload them onto the server, so that other workstation can view/access my shared files. I change the destination path to my server path but it fails... My server is 'FRUITS'.<br><br>&lt;cffile...
  19. Rachel80

    cffile action="read"

    my data is stored in mssql server. <br>the data type, varchar, only allow me to input 255 characters so i use &lt;cffile action=&quot;write&quot;&gt; to write input into text file. <br>Then store the pathname in database. <br>To retrieve the file contents, i use &lt;cffile...

Part and Inventory Search

Back
Top