User Profile

Collapse

Profile Sidebar

Collapse
rickky112
rickky112
Last Activity: Jul 13 '10, 06:45 AM
Joined: May 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rickky112
    replied to Multiple values from checkboxes
    I've managed to work this problem out. Here is the code and it might help another newbie like me!!!

    Code:
    <body>
    <%
    yearselected = request.form("year")
    
    If (Len(yearselected)) >= 10 then
    Response.write (Left(yearselected,4)) & " - " & (Right(yearselected,4))
    Else
    Response.write yearselected
    End If
    
    %>
    <form method="POST"
    ...
    See more | Go to post

    Leave a comment:


  • rickky112
    started a topic Multiple values from checkboxes

    Multiple values from checkboxes

    Hello all

    I am very new to asp coding and i have a problem which i need help on.

    Here is the code i've written so far.

    Code:
    <body>
    <%
    year1 = request.form("2007")
    year2 = request.form("2008")
    year3 = request.form("2009")
    year4 = request.form("2010")
    
    	If year1 = "" AND year2 = "" AND
    ...
    See more | Go to post

  • rickky112
    replied to Help please with JS to ASP
    Thanks a million, works a treat!!!!!

    Rick
    See more | Go to post

    Leave a comment:


  • rickky112
    started a topic Help please with JS to ASP

    Help please with JS to ASP

    Hi all

    I'm new to this forum and also new to javascript.

    I have developed a website using asp pages and i'm using a software package incorporated into the asp pages.

    The external software is mainly written in javascript and i need to extract a value from it. i have been using a cookie in the past but i'm having a lot problems with this, so i've decided to extract the value using a hidden form. This is...
    See more | Go to post
No activity results to display
Show More
Working...