Displaying 2 results from an estimated 2 matches for "empname".
Did you mean:
tmpname
2011 May 04
3
Regexp question
I have a string like this
st <- "SELECT COUNT(empid), COUNT(mgrid), COUNT(empname),
COUNT(salary), FROM Employees"
How can I remove the last comma before the FROM statement?
-J
2008 May 21
0
AJAX RETURNS HTML
I am new to AJAX.PLease help me to resolve this problem.
This is my jsp page.
"Search.jsp".
<html>
<head>
<title>Search Results</title>
</head>
<body>
<form name="searchForm">
<input type="text" name="empName">
<input type="submit" value="Submit">
</form>
<div id="resultId">
</div>
<script>
//code for calling ajax
//retruns response from server
document.getElementById(resultId).innerHTML = responseText;
doOnLoad();
</script>
A...