Monday, January 12, 2015

Convert 12 Hour format to 24 Hour Format asp.net C#


12 to 24

   private string ConvertTo24HourFormat(string strTime)  //HH:MM AM/PM
   {  
     string FinalTime=string.Empty;  
     if (!string.IsNullOrEmpty(strTime))  
     {  
       try  
       {  
         string[] InTime = strTime.Split(':');  
         int h = Convert.ToInt32(InTime[0].ToString());  
         string[] AMPM = InTime[1].Split(' ');  
         if (AMPM[1].ToString() == "PM")  
         {  
           h += 12;  
         }  
         if (AMPM[1].ToString() == "AM" && h.ToString()=="12")  
         {  
           h = 00;  
         }  
         FinalTime = h + ":" + InTime[1];  
         //if(h>  
       }  
       catch (Exception) { }  
     }  
     return FinalTime;  
   }  

24 to 12

  private string ConvertTo12HourFormat(string strTime)  //HH:MM AM/PM
   {  
     string FinalTime = string.Empty;  
     if (!string.IsNullOrEmpty(strTime))  
     {  
       try  
       {  
         string[] InTime = strTime.Split(':');  
         int h = Convert.ToInt32(InTime[0].ToString());  
         string[] AMPM = InTime[1].Split(' ');  
         if (AMPM[1].ToString() == "PM")  
         {  
           h -= 12;  
         }  
         if (AMPM[1].ToString() == "AM" && h.ToString() == "00")  
         {  
           h = 12;  
         }  
         FinalTime = h + ":" + InTime[1];  
         //if(h>  
       }  
       catch (Exception) { }  
     }  
     return FinalTime;  
   }  

Monday, January 5, 2015

Fire event on enter key press for a textbox

ASPX:

 <asp:TextBox ID="TextBox1" clientidmode="Static" runat="server" onkeypress="return EnterEvent(event)"></asp:TextBox>    
 <asp:Button ID="Button1" runat="server" style="display:none" Text="Button" />  

JS:
 
 function EnterEvent(e) {  
     if (e.keyCode == 13) {  
       __doPostBack('<%=Button1.UniqueId%>', "");  
     }  
   }  


CS:

 protected void Button1_Click1(object sender, EventArgs e)  
   {  
   }  

Thursday, December 18, 2014

Stock Price Plugin Live


Source
 <iframe frameborder="0" src="http://www.indianotes.com/widgets/indices-ticker/index.php?type=indices-ticker&w=500" width="500" height="100" scrolling="no"></iframe>  
Demo

Live Cricket Score Plugins


Source
 <iframe frameborder='0' src='http://www.ecb.co.uk/stats-live/live-scores-widget.html?colour=Blue&countiesTeams=null&feed=%2Fstats-live%2Flive-scores-widget.json&internationalTeams=184%2C182%2C5%2C24%2C8%2C2%2C95%2C7%2C3%2C15%2C13%2C11%2C181%2C1%2C6%2C14%2C10%2C4%2C9&miscTeams=null' style='width: 580px; height: 450px;'></iframe>  
Demo