Hi
I am facing a problem with the code below its working but not so well, i am facing those problems:
- its showing the msgsentlbl before that i click on send button
- even the values inserting inside new row without message body which should be written inside adsmessagetxtbx so the Message column in the table its empty.
- Sndmailtoadder its close the ModalPopupExtender and that shouldnt happen as the client should click on another button called Closebtn.
protected void Sndmailtoadder_Click(object sender, ImageClickEventArgs e)
{
if (Session["UsrNme"] != null)
{
SqlConnection mssginfocon = new SqlConnection(cs);
{
// Open your connection
mssginfocon.Open();
SqlCommand mssginfoCM = new SqlCommand();
...
Go to the complete details ...