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 Mike Lewis 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. 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
  16. goatstudio

    How to display an .exe file in ultraDev?

    I don't think you can do that, you can only provide a link to that exe file. ------------------ Freedom is a Right
  17. goatstudio

    using one select list to populate another

    You can do this by javascript. Visit my homepage first page you can see the example by view the source code. http://www.geocities.com/goat_studio/ ------------------ Freedom is a Right
  18. goatstudio

    How do I know if the .dll files for a component are added?

    Think maybe you can try to write the code first, no need to worry about the location of dll, 'coz you always start to create the object by Set x = Server.CreateObject("...") ------------------ Freedom is a Right
  19. goatstudio

    HTML forms /MySQL

    Can describe more? What is your $in and $out for? How many set of form you have? ------------------ Freedom is a Right
  20. goatstudio

    Session state with loading balance...

    Last time I have a hard time to maintain session state on the load balancer. There is something got to do with the load balancer, I ask the cisco guy to configure the load balancer so that a user will "stick" to 1 of the servers once he surf. You can find more infomation under IIS...

Part and Inventory Search

Back
Top