Hier ist der HTML-Code:
Code: Select all
Enter Employee ID
ID:
Title:
Name:
Department:
Code: Select all
$(document).ready(function () {
$("#MainContent_BtnSearch").click(function () {
$("#emp").hide("slow");
var empId = $("#MainContent_TxtEmpId").val();
$.ajax({
type: "GET",
dataType: "json",
contentType: "application/json",
url: "",
data: "{'employeeId': '" + empId.toString() + "'}",
success: function (data) {
$("#txtId").html(data.d.ID);
$("#txtName").html(data.d.FullName);
$("#txtTitle").html(data.d.Title);
$("#txtDepartment").html(data.d.Department);
/// show employee details
$("#emp").show("slow");
},
error: function () {
alert("Error calling the web service.");
}
});
});
});
Gibt es eine Möglichkeit, meinen Code so zu verbessern, dass er Daten aus der Datenbank in SQL Server 2008 erhält und diesen Datensatz auch aktualisieren und Datenbankänderungen speichern kann?
Mobile version