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!

Recent content by goatstudio

  1. goatstudio

    Multiple event firing in a web form

    Hi all, I have a web form, and my page is coded in c#. There is a button and a label in my webform, when I click on the button, the label should display +1. My code as below: protected void Button_Submit_OnClick (Object Src, EventArgs E) { Label1.Text = "Total: " + (x++); } x is public...
  2. goatstudio

    passing QueryStrings

    Should do like this: Response.Redirect "norestaurant.asp?ID=" & Request.QueryString("ID") ------------------ Freedom is a Right
  3. goatstudio

    True/False Value

    I think you can have your own define value in a checkbox. :) ------------------ Freedom is a Right
  4. goatstudio

    Execute a program client side

    If is office product, you can change the MIME header for the output, for example: Response.ContentType = "application/vnd.ms-excel" otherwise, you actually can't execute any program at client side. ------------------ Freedom is a Right
  5. goatstudio

    Dear Experts, I'm having an erro

    No..you gotta use IIS. pws don't have SMTP running in it. ------------------ Freedom is a Right
  6. goatstudio

    Recordset.RecordCount

    Take a look at the example here: http://www.asp101.com/samples/viewasp.asp?file=db%5Fcount%2Easp ------------------ Freedom is a Right
  7. goatstudio

    Please HELP!!!!

    I suggest you use Dictionary. Dictionary with little bit of String trick with do the job. Check out dictionary refference at VBScript help file. ------------------ Freedom is a Right
  8. goatstudio

    Session timeouts... can you increase the timeout?

    Yes, you can set this either on the IIS or global.asa ------------------ Freedom is a Right
  9. goatstudio

    MySQL vs MsAccess for Small Biz Apps

    Setting up Apache + MySQL + phpMyAdmin on windows/linux is cheap and good solutions (becoz all free). :) But you can develop a powerful application by simply using Access. ------------------ Freedom is a Right
  10. goatstudio

    copy database

    You can backup your database and restore back at your client site server. ------------------ Freedom is a Right
  11. goatstudio

    Adding a record to a database

    Maybe you can try "TRUE" or "FALSE"? ------------------ Freedom is a Right
  12. goatstudio

    Type mismatch

    I guess you have variable name as 'fromAdd' and same a sub routine name as 'fromAdd' too, this may cause the problem. ------------------ Freedom is a Right
  13. goatstudio

    Calling All ASP Forum Experts (For Each loop read order)

    Dun really understand the question, maybe you can explain more clearly? ------------------ Freedom is a Right
  14. goatstudio

    expected end statement

    If the error message is "expected end statement", then there must a "If..Then" statement haven't close yet. ------------------ Freedom is a Right
  15. goatstudio

    Reduce CPU Usage when Running Telnet

    Iam looking for how to improve the CPU usage when iam running Telnet session in Silverstream in WIN 2k server.Every time the CPU usage showing 100%.Is there any way to reduce my CPU usage when iam running my Telnet in this Environment. ------------------ Freedom is a Right

Part and Inventory Search

Back
Top