Click here to Skip to main content
15,896,505 members

Comments by Sumon562 (Top 161 by date)

Sumon562 24-Jan-16 6:00am View    
All reports are showing but only one report is not showing
Sumon562 24-Oct-15 23:45pm View    
Actually when I debug the code my procedure return data properly.
Sumon562 1-Oct-15 6:02am View    
no this link not working
Sumon562 26-Aug-15 6:40am View    
When I remove directory from IIS and publish it again then it works properly.
Can you explain why it happens, Please?
Sumon562 26-Aug-15 6:32am View    
private static SqlConnection _HRCon;= null;
public static SqlConnection HRCon
{
get
{
if (_HRCon == null)
{

_HRCon = new SqlConnection(String.Format("Data Source=SERVER;Initial Catalog=HR;Persist Security Info=True;User ID=sa;Password=123;Connection Timeout=100"));

}
return _HRCon;
}
}