I'm trying to save an HTML table to a database. Basically I I'm using ASP.NET(VB.NET) for the server-side. I'm tired of using WebForms and the controls so I've decided to try another technique which I don't know if has some pitfalls or security issues in the future. So here's my code:
My JavaScript:
//Trigger by a button...
function SaveCE_Click()
{
//Just gathering data...
var ItemRows = $('.ItemRow');
var CEData = 'Event=Save';
CEData += '&Project='+ProjectList.val();
for(i=0;i<ItemRows.size();i++)
{
CEData += '&ItemCode='+ $(ItemRows.get(i)).find('.ItemCodeCell').html();
CEData += '&Quantity='+ $(ItemRows.get(i)).find('.QuantityCell').html();
CEData += '&UOM='+ $(ItemRows.get(i)).find('.UOMCell').html();
CEData += '&UnitPrice='+ $(ItemRows.get(i)).find('.UnitPriceCell').html();
}
//Ajax...
$.ajax({
type: 'POST',
url: 'EventHandler.aspx',
data: encodeURIComponent(CEData),
success: function(Data, TextStatus, XHR)
{
alert('Saved!');
},
error: function(XHR)
{
switch(XHR.status)
{
case 401: ShowLoginDialog(); break; //If server throws 401 as HTTP Status Code...
default: alert('Default error message.'); //If unhandled error occurs...
}
}
});
}
My EventHandlers (server-side):
<%@ Page Language="VB" %>
<%@ Import Namespace="System.Windows.Forms" %>
<script runat="server">
'Page Load
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
If Session("Username") = "" Then
Response.StatusCode = 401 'Unauthorized... ajax will handle this...
Else
CallByName(Me, Request.Form("Event"), CallType.Method, Nothing)
End If
End Sub
'Event Save
Public Sub Save()
'Saving process...
End Sub
<script>
I'm happy with the speed I achieved with this code but my only concern is, is it secured? And is it okay to break the law that ASP.NET Web Forms has brought us? 'Coz I don't feel free using ASP.NET WebForms Components. What could be the possible pitfalls I might encounter by doing this?