Search Results

1
vote

include a cpp file in jsp

A jsp renders HTML, in the part you will see in your browser you are no longer in your jsp, you are not even in your code anymore. If you want to read a card from an HTML page you will need …
1
vote

How to get custom value from text field in JSP?

The way i use to do it is as follows: Replace <input type=submit with a button <input type="button" value="Delete" onclick="deleteIt('yourid');" /> …
0
votes

jsp error when using if-else with html

in jstl it would be something similar to <c:choose> <c:when test="${client is null}"> NO client </c:when> <c:otherwise> <A href="<c:url value="pa …
2
votes

Multithreading in JDBC connectivity

Your webserver is inheritly multithreaded, that saves you from implementing you own threads to handle the uploads. Do however make sure that multiple requests dont use same resources (dont write al …