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

  1. SauerC

    AOL Mac textarea with javascript = no letters, just carats

    if you take <textarea onkeypress=&quot;return (this.value.length < 10)&quot;></textarea> and copy in 20 characters of text (either by right clicking in the textarea and selecting &quot;Paste&quot; or by typeing ctrl-v) it will allow the 20 characters to be entered and not stop it at 10. I'm...
  2. SauerC

    AOL Mac textarea with javascript = no letters, just carats

    Good Morning All, Below is the simplified output from an ASP that creates a form for the user to fill out. As you can see, we have a textarea for them to put comments in. We want to limit the size of the comments to 1500 characters. I created four javascript functions so I can check a couple...
  3. SauerC

    passing a var to a function from the call

    <script language=&quot;javascript&quot; type=&quot;text/javascript&quot;> <!--- Generate javascript controlers ---> function doit(message) { alert(message); } </script> <body onLoad=&quot;doit('bosh');&quot;> notice the different position of the quote marks.
  4. SauerC

    window.open can't open a web browser

    When you setup the Windows service, did you check the &quot;interact with desktop&quot; box?
  5. SauerC

    Need to add text to textbox named '.Send' - Can this be done?

    how about trying this ? <html> <body onLoad=&quot;document.forms[0].elements[0].value='New text'&quot;> <form> <input type=&quot;text&quot; name=&quot;.Send&quot; value=&quot;Initial text&quot;> </form> </body> </html>
  6. SauerC

    EXEC and deleted from a trigger

    I ended up doing some similar...since the temp table has all the fields I need, but allows me to make changes select * into #MyDeleted from deleted update #MyDeleted set change_ind = 'Y', change_date = getdate(), change_who = 12 insert into Users select * from #MyDeleted Thanks for the...
  7. SauerC

    EXEC and deleted from a trigger

    So there is no way to run dynamic sql statement in the scope of the trigger? -Christian
  8. SauerC

    EXEC and deleted from a trigger

    we have an update trigger that inserts a row into a database...we wanted to make that part be dynamic enough so the trigger could automatically handle changes to the table. What I did was create a stored procedure that would return all the fields of the table, except the &quot;change...
  9. SauerC

    Column Default Values and Stored Procedure

    Is it possible to have a stored procedure as the default value of a column? we have a company table that we want to keep any revisions to the rec in the same table. We have a field called 'change_ind' which is set to null for the most current record. On an update, the record will be copied...
  10. SauerC

    Auto Generated Primary Key in MSAccess

    just leave the autonumber field out of the SQL Insert statement and it'll be fine. -Christian
  11. SauerC

    QuarkXpress Tag

    Hello all, A fellow programmer and I are working on taking information from a SQL Database and dumping it to a text file with QuarkXpress Tags so it can just be imported into a Quark template file. Most of the information that we have about the Xpress Tags were from looking at last years...
  12. SauerC

    RegExp object help

    trying using call re.replace(string, &quot;&quot;)
  13. SauerC

    Efficient recordset paging

    the page on LearnAsp.com does not fetch all the records to the client ... it's doing exactly what you are looking for. just because of rstemp.cursorlocation=aduseclient doesn't mean that the entire recordset is being served to the browser.
  14. SauerC

    ADSI Error

    Accounts don't have .FirstName or .LastName, only .FullName and .Name (which is the username)
  15. SauerC

    Help with Word Automation through an ASP VBScript Page

    I created a button in word and this code worked in selecting the whole document and changing everythingd Selection.WholeStory Selection.Find.Execute &quot;@@@&quot;, , , , , , , , , &quot;222&quot;, wdReplaceAll -Christian
  16. SauerC

    Help with Word Automation through an ASP VBScript Page

    the Selection.Find.Execute function has ALOT more parameters than 3, but most are optional hence the use of := if you don't want to do that, then you have to put blank spaces for the parameters you are not using. based on the help file for Find.Execute, I think you need to use this...
  17. SauerC

    Redirecting with frames

    err...meant subroutine that breaks out of frames
  18. SauerC

    Redirecting with frames

    this is the subroutine I use for a redirect that breaks out of forms sub SafeRedirect(url) Response.Buffer = true Response.Flush Response.Write &quot;<html><head>&quot; Response.Write &quot;<script language=&quot;&quot;javascript&quot;&quot;>top.location.replace('&quot; & URL &...
  19. SauerC

    how to update fields so if a user can delete the text in field?

    why not just let the field contain an empty string, instead of putting nulls in?
  20. SauerC

    Click here to be sent your password via email &lt;- HOW?

    Are you saying you want to programmatically POST a html form? Yes you can do that, but it does require a TCP control to do it (you've already stated your ISP won't add new controls for you). here's a snippet of code from an ASP that opens a connection to a webserver an does a POST to a form...

Part and Inventory Search

Back
Top