Posted on: 3/23/2015 3:49:19 PM | Views : 512

hello everyone, I'm Kaushik.
This is the code that i have for uploading the excel file and saving the data into sql server. But the last column, "current sem" in the database shows "null" values. Y is it so? every other column is populated with the data.
here is the code:
addStudents.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="addStudents.aspx.cs" Inherits="Sample_Execution.addStudents" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:TextBox ID="txt_batch" runat="server" placeholder="Batch Number. Ex: 11,12.."></asp:TextBox> <asp:TextBox ID="txt ...

Go to the complete details ...