Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable,
visit the help center
.
Closed
10 years ago
.
I've searched the internet, all previous answers said that a semicolon is missing. That's not the problem. What else can cause this error? In the third site, several people asked this question but this scenario is different.
Error is >
Type or namespace definition, or end-of-file expecte
d
public partial class SeenSMS : System.Web.UI.UserControl
//temp sql connection
//public SqlConnection mycon;
SqlConnection mycon = new SqlConnection(@"Data Source=ASOFT20\MAMUT;Initial Catalog=ViltraNew;UserID=sa;Password=sa123");
protected void Page_Load(object sender, EventArgs e)
string[] msg_arr = Request.QueryString["arr"].Split('|');
if (!IsPostBack)
string Moose = Request.QueryString[1];
if (msg_arr != null)
if ((msg_arr.Length == 3) && (msg_arr[1].ToLower() == "slett"))
int Hours = Convert.ToInt32(msg_arr[2]);
if (Hours > 0)
string username = msg_arr[0];
SqlCommand com = new SqlCommand("SELECT count(*) as count FROM Animal Where Hours=@Hours", mycon);
com.Parameters.AddWithValue("@Hours",Hours);
using (SqlDataReader reader = com.ExecuteReader())
if(reader.HasRows)
while (reader.Read())
// int number = Convert.ToInt32(con.ExecuteReader());
int number = Convert.ToInt32(reader["count"]);
else{
// if( number == 0)
// Response.Write("Improper Plain Summaries.");
// }
// else
public bool number { get; set; }
public object Hours { get; set; }}
// public System.Collections.Specialized.NameValueCollection Moose { get; set; }
// public string Value { get; set; }
// public object msg_arr { get; set; }
–
–
–
–