December 14, 2015

Background Image for DIV

 
sample text

December 5, 2015

Connection String in ASP.net


 
 
   
   
 



Opening the connection


 private string ConStr;


ConStr = System.Configuration.ConfigurationManager.AppSettings["con"];
                SqlConnection cnn = new SqlConnection(ConStr);
                cnn.Open();






December 3, 2015

Background image to ASP.net Button

                            Style="background-image:url('Images/sample.png'); background-repeat:no-repeat"
                            OnClick="btnDownload_Click" Height="95px" Width="90px"/>

December 2, 2015

The name 'HttpContext' does not exist in the current context

Add System.Web.dll by right clicking to your solution explorer -> Add reference