Click here to Skip to main content
15,894,343 members

Comments by sandip1711 (Top 3 by date)

sandip1711 18-Aug-14 9:18am View    
Please check Solution.
Hope this will work
sandip1711 20-Mar-14 1:52am View    
I think you can do it by
insert into ServerName.Database.dbo.tableName() values() in stored procedure

hope it will work
sandip1711 26-Feb-14 2:44am View    
Use Following code
// Import system.UI.webcontrols.Image;

Image objLabel = (Image)e.Item.FindControl("LblEmail");
DataTable dt = stuObj.getMessageByUser();
int isEmail = int.Parse(dt.Rows[0]["isEmail"].ToString());
if (isEmail == 1)
{
objLabel.Visible = true;
}