| Author: vipul 05 Sep 2008 | Member Level: Diamond | Rating: Points: 2 |
Hi, first of all the pest your data access layer and busines logic layer, from where you take this email id with there class name.
vipul, http://dongavipul.blogspot.com
|
| Author: ANIL PANDEY 05 Sep 2008 | Member Level: Diamond | Rating: Points: 2 |
simply..
u need to call the Sp with the help of the SqlCommand.... SqlConnection con = new SqlConnection(strConStr); SqlCommand cmd = new SqlCommand(); con.Open(); cmd.Connection = con; cmd.CommandType = CommandType.StoredProcedure; SqlDataReader drd = cmd.ExecuteReader();
Regards Anil
|