Archive for December, 2008

TextBox with numeric input only : textbox, only, numeric, input

Posted on December 24, 2008. Filed under: JavaScript |

function ISonlynumber(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;
}
<asp:TextBox ID=”txtmobileNO” Runat=”server” Width=”150″ MaxLength=”64″ onkeypress=”javascript:return ISonlynumber(event);”></asp:TextBox>

Read Full Post | Make a Comment ( None so far )

change theme of page dynamically

Posted on December 19, 2008. Filed under: Asp.net |

protected void Page_Load(object sender, EventArgs e)
{    Page.Header.Controls.Add( gettheme());
}
protected HtmlLink gettheme()
{
HtmlLink lk = new HtmlLink();
// <link type=”text/css” href=StyleSheet.css rel=Stylesheet />
lk.Attributes.Add(“type”, “text/css”);
lk.Attributes.Add(“href”, “StyleSheet1.css”);
lk.Attributes.Add(“rel”, “Stylesheet”);
return lk;
}

Read Full Post | Make a Comment ( None so far )

Encription of user sensitive data

Posted on December 19, 2008. Filed under: C# |

using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// Summary description for Base64
/// </summary>
public sealed class Base64
{
public static string Encode(string data)
{
try
{
byte[] encData_byte = new byte[data.Length];
encData_byte = Encoding.UTF8.GetBytes(data);
string encodedData = Convert.ToBase64String(encData_byte);
return encodedData;
}
catch(Exception e)
{
throw new Exception(“Error in base64Encode ” + e.Message);
}
}
public static string Decode(string data)
{
try
{
UTF8Encoding encoder = new UTF8Encoding();
Decoder utf8Decode = encoder.GetDecoder();
byte[] todecode_byte = Convert.FromBase64String(data);
int charCount = utf8Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
char[] decoded_char [...]

Read Full Post | Make a Comment ( None so far )

Write Meta tag in aspx page dynamically

Posted on December 19, 2008. Filed under: Asp.net |

HtmlMeta mt = new HtmlMeta();
mt.Attributes.Add(“keyword”, “hello is world”);
Page.Header.Controls.Add(mt);
HtmlMeta mt1 = new HtmlMeta();
mt1.Attributes.Add(“name”, “suresh”);
mt1.Attributes.Add(“keyowrd”, “hello rupak how r u”);
mt1.Attributes.Add(“discription”, “yellowpages india,web hosting”);
Page.Header.Controls.Add(mt1);

Read Full Post | Make a Comment ( None so far )

    About

    Hi,I am Suresh Sharma from Gorakhpur , UP, India.I have work on .net technology from 2 years. Key skills-Asp.net 2.0,3.5, Sql 2005,2000. Ajax.net 1.1,C#.net

    RSS

    Subscribe Via RSS

    • Subscribe with Bloglines
    • Add your feed to Newsburst from CNET News.com
    • Subscribe in Google Reader
    • Add to My Yahoo!
    • Subscribe in NewsGator Online
    • The latest comments to all posts in RSS
    • Subscribe in Rojo

    Meta

Liked it here?
Why not try sites on the blogroll...