Click here to Skip to main content
15,884,472 members

Comments by Priyanka7777 (Top 36 by date)

Priyanka7777 11-Sep-13 3:34am View    
This gives me an error that the "Resource cannot be found".
Priyanka7777 6-Sep-13 8:28am View    
Great this works.But the problem is i need to save some information on OK button click.
I want to write this code:
cmd = objDb.GetStoredProcCommand("SetSurveyInfoDetails");
//temporary set dropdown value to xyz.to run the SP.
Session["DropDownListSurvey"] = "XYZ";
objDb.AddInParameter(cmd, "@ServeyName ", DbType.String, Session["DropDownListSurvey"]);
objDb.AddInParameter(cmd, "@Name ", DbType.String, txtName.Text);
objDb.AddInParameter(cmd, "@Mobile ", DbType.String, txtMobile.Text);
objDb.AddInParameter(cmd, "@Email_Id ", DbType.String, txtEmail.Text);
result = objDb.ExecuteNonQuery(cmd);

Is it possible?
Priyanka7777 6-Sep-13 8:03am View    
I am not getting any error.Nut the confirmation box is not shown.
Priyanka7777 6-Sep-13 8:02am View    
Yes.I want to save the information entered once the user clicks on OK button.
Priyanka7777 6-Sep-13 7:50am View    
Sorry i added your code,but it is not working.Confirmation box is not opening.