Hi ,
In my application it gets data from databas eand populates in textboxes my application design with html and form.If i move my code into contet placeholder it didnt work.its not populating in textboxes
private DataSet TimeSheetEmployeeDetailsGet(int timeSheetID)
{
return TimeSheetEmployeeDetailsGet(timeSheetID, String.Empty);
}
private DataSet TimeSheetEmployeeDetailsGet(int timeSheetID, String day)
{
string Connection = System.Configuration.ConfigurationManager.ConnectionStrings["ArtDB"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(Connection);
DataSet myDataSet = new DataSet();
sqlConn.Open();
try
{
string strSP = "SP_EmployeeTimeSheetDetailsGet";
SqlCommand sqlCmd = new SqlCommand();
sqlCmd.Connection = sqlConn;
sqlCmd.CommandType = CommandType.S ...
Go to the complete details ...