Search results

  1. Kodo

    Splitting strings

    not necessary. use the split function instead.
  2. Kodo

    Two Forms 1 Page

    do something like this at the top of your page if request.form<>"" then txtAreaText=request.form("txtAreaText") 'request.form("txtAreaText") references the name of the html text area. end if <textarea rows="5" columns="30"><%=txtAreaText%></textarea> infact, do this for all your form fields...
  3. Kodo

    Two Forms 1 Page

    Classic ASP or .NET?
  4. Kodo

    SQL and Data Access Pages and ASPX pages

    .NET is vastly superior to DAP in every way. Whatever you can do with DAP, you can do it better with .NET. I posted a link to MS VS.NET Express which you can download for free until Nov of 06 and ONLY during that time frame will the downloads come with a free life-time license. Here's the...
  5. Kodo

    Using Hash algorithms like SHA-1 for one way password encryption in VB6

    http://www.codearchive.com/rate.php?rid=753&go=0206 no time for code right now.. so start with the link..
  6. Kodo

    Persisting variable values in a webform?

    if you do that then the value of one will remain in the controls viewstate each time because when you post back to the page, the value is reset to its' base of 0. So it won't increment. What you need to do is put the value in viewstate so that you can return it later if the initial value is 0...
  7. Kodo

    Using Flash

    http://www.macromedia.com/software/player_census/flashplayer/
  8. Kodo

    Credit Card Processing

    it was just a matter of time before someone posted this...yeah yeah.. there are other methods of global validation that don't require individual validation which is what I was referring to. I can't stand writing conditionals to check 'Is this a date, is that a date'. If it's strongly typed...
  9. Kodo

    Credit Card Processing

    tons http://www.scriptsearch.com/JavaScript/Scripts/Calendars/ http://www.webreference.com/programming/javascript/gr/
  10. Kodo

    Access & websites ?

    if you're going to put any database behind a site, PLEASE don't use access. It's not meant for this sort of thing. Can it be done.. yes.. but it's generally a bad idea. Use the MySQL database provided to you by the host or better if they have MSSQL 2000/2005.
  11. Kodo

    Credit Card Processing

    4 ways 1: Don't use a java pop up. Use a script that displays a date-picker. 2: Use drop downs 3: use both 1 and 2 4: use client and server side validation, i.e. a combo of 3 and server side validation. I normally do 2 or 3 (without a free form text box) this way the values can't be modified...
  12. Kodo

    Credit Card Processing

    I can do this.. but I am very upfront about "things" that I find. In my experience there is no skirting the issue; it either "is" or "isn't" and there isn't always a "nice" way to say something needs to be changed. In other words, I'm very sterile with my responses as I try to maintain some sort...
  13. Kodo

    Yes/No field in conversion

    change the Front End queries.. I'm sure it won't take too long.
  14. Kodo

    Credit Card Processing

    use Verisigns PayFlowPro XMLPay 2.0 API to accomplish this. When you sign up for it, you will have to contact their support to specifically request the PayFlowPro .NET SDK. I know this because I am working on a web service for it right now. I can help answer questions as you build this. My...
  15. Kodo

    Bios and System Startup verry slow

    Personally, I would start with the hard drive manufacturers drive utility to make sure the health of the drive is normal.
  16. Kodo

    Slang Helper

    fuh-get-a-bowt-it
  17. Kodo

    Slang Helper

    "Forget about it" aka. "Fuhgetaboutit" I grew up with this one since I'm Sicilian..but alot of people don't understand it's many uses. I thought it was clearly defined in the movie "Donnie Brasco" in one scene where several under cover cops were discussing it. Very funny scene :)
  18. Kodo

    FREE - Visual Studio (Express Editions)

    I had the opportunity to attend Launch 2005 here in Syracuse. I thought the demo's were excellent! Choc full of "check this out" stuff. I definately liked the software selection in the giveaway. Also, if you're bored with a section, take a break and go talk to some of the staff about their...
  19. Kodo

    vb.net question

    if you're using .net 2.0, then you can use the object datasource and keep your nTier style. I personally prefer a busniess object as well.
  20. Kodo

    FREE - Visual Studio (Express Editions)

    here's a GUI manager for the SQL 2005 express version http://www.microsoft.com/downloads/details.aspx?FamilyID=82afbd59-57a4-455e-a2d6-1d4c98d40f6e&displaylang=en
Back
Top Bottom