Posted on: 7/23/2015 2:52:35 AM | Views : 872

Cant seem to figure out why this script is not responsive ; getting No Relevant Source Line ( semi-colon ; expected) , and everything looks like its in place for me using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Data.SqlClient; public partial class em : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { ///check for login session if(Session["SessionId"] == null) Response.Redirect("~/ADMINS/default.aspx", true); if (!IsPostBack) { BindData(); } } private void BindData() { ////string qitem; /////qitem = Request.QueryString["ID"].ToString(); string qitem = Request.QueryString["ID"]; ...

Go to the complete details ...