Click here to Skip to main content
16,017,313 members

Comments by Mehul Thummar (Top 6 by date)

Mehul Thummar 8-Nov-14 4:53am View    
app install time it can create 2 icon for entry point to start application.
1. 1st icon is work as usual application.
2. 2nd icon is directly work any one functionality of application and than work as usual application.
so, that reason create multiple entry point in application.
Mehul Thummar 26-Mar-14 2:46am View    
we are use this propert then we are not hit this grid but my requirement is cick the grid than grid some animation working zoom in than zoom out.
Mehul Thummar 10-Mar-14 7:57am View    
windows phone app sharing own app details in Facebook, Twitter, linkedin.
Mehul Thummar 5-Mar-14 4:40am View    
add CommandType

protected void Button1_Click(object sender, EventArgs e)
{
try
{
string str = "Data Source=HP-PC\\SQLEXPRESS;Initial Catalog=Earth;Integrated Security=True";
SqlConnection con = new SqlConnection(str);
con.Open();
string insertQuery = "insert into Current (Name,Emailaddress,Contactno,Qualification,Institute) values (@Name,@Emailaddress,@Contactno,@Qualification,@Institute)";
SqlCommand com = new SqlCommand(insertQuery, con);
com.CommandType=CommandType.Text; // add the command type is Text.
com.Parameters.AddWithValue("@Name", txtName.Text);
com.Parameters.AddWithValue("@Emailaddress", txtEmailaddress.Text);
com.Parameters.AddWithValue("@Contactno", txtContactno.Text);
com.Parameters.AddWithValue("@Qualification", txtQualification.Text);
com.Parameters.AddWithValue("@Institute", txtInstitute.Text);

com.ExecuteNonQuery();

con.Close();

}
catch (Exception ex)
{
Response.Write("Error Occured! Try Again" + ex.ToString());
}
}
Mehul Thummar 5-Mar-14 4:15am View    
GzipStream class Provides methods and properties used to compress and decompress streams.