Saturday, February 23, 2013

String concatenation in ASP

<!DOCTYPE html>
<html>
    <body>
        <%
            fname = "Rakibul" 'This is the first name of me
            lname = "Haider" 'This is the last name of me
            name = lname &" "& fname 'concate last name and first name
            response.write(name) 'Printing the full name
        %>
    </body>
</html>

No comments:

Post a Comment