<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2059844584429161477</id><updated>2011-09-09T19:08:32.895-07:00</updated><category term='About me'/><title type='text'>Jinesh Blogs</title><subtitle type='html'>I am Jinesh B. Located at karuvatta in alappuzha,Kerala-India</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>20</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-4018115219436032921</id><published>2010-09-22T21:07:00.000-07:00</published><updated>2010-09-22T21:08:59.201-07:00</updated><title type='text'>Basic hashing example</title><content type='html'>protected void btnhash_Click(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;string salt = CreateSalt(txtpassword.Text.Length);&lt;br /&gt;string pass = CreatePasswordHash(txtpassword.Text.Trim(), salt);&lt;br /&gt;Label1.Text=pass;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public string CreateSalt(int size)&lt;br /&gt;{&lt;br /&gt;//Generate a cryptographic random number.&lt;br /&gt;  RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();&lt;br /&gt;  byte[] buff = new byte[size];&lt;br /&gt;  rng.GetBytes(buff);&lt;br /&gt;// Return a Base64 string representation of the random number.&lt;br /&gt;  return Convert.ToBase64String(buff);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public string CreatePasswordHash(string pwd, string salt)&lt;br /&gt;{&lt;br /&gt;  string saltAndPwd = String.Concat(pwd, salt);&lt;br /&gt;  string hashedPwd =&lt;br /&gt;  FormsAuthentication.HashPasswordForStoringInConfigFile(saltAndPwd, "sha1");&lt;br /&gt;  return hashedPwd;&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-4018115219436032921?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/4018115219436032921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=4018115219436032921&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/4018115219436032921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/4018115219436032921'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/09/basic-hashing-example.html' title='Basic hashing example'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-4158741427180742754</id><published>2010-09-22T02:15:00.000-07:00</published><updated>2010-09-22T02:20:01.942-07:00</updated><title type='text'>Password encryption and decription in asp.net</title><content type='html'>protected void btnsignup_Click(object sender, EventArgs e)&lt;br /&gt; {&lt;br /&gt;    SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["cnn"].ToString());&lt;br /&gt;     con.Open();&lt;br /&gt;     string pass = passencrypt(txtpassword.Text.Trim());&lt;br /&gt;     SqlCommand cmd = new SqlCommand("insert into userdetails values('" + txtusername.Text.Trim() + "','" + pass + "')", con);&lt;br /&gt;     cmd.ExecuteNonQuery();&lt;br /&gt;     txtusername.Text = ""; txtpassword.Text = ""; &lt;br /&gt;}&lt;br /&gt;protected void btnrecoverpassword_Click(object sender, EventArgs e)&lt;br /&gt; {&lt;br /&gt;    SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["cnn"].ToString());&lt;br /&gt;    con.Open();&lt;br /&gt;    SqlCommand cmd = new SqlCommand("select password from userdetails where username=" + session["uname"].Tostring(), con);&lt;br /&gt;    string pass =(string) cmd.ExecuteScalar();&lt;br /&gt;    pass = passdecrypt(pass);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;private string passencrypt(string sData)&lt;br /&gt;{&lt;br /&gt;       byte[] encData_byte = new byte[sData.Length];&lt;br /&gt;       encData_byte = System.Text.Encoding.UTF8.GetBytes(sData);&lt;br /&gt;       string encodedData = Convert.ToBase64String(encData_byte);&lt;br /&gt;       return encodedData;&lt;br /&gt;}&lt;br /&gt;public string passdecrypt(string sData)&lt;br /&gt;{&lt;br /&gt;       System.Text.UTF8Encoding encoder = new System.Text.UTF8Encoding();&lt;br /&gt;       System.Text.Decoder utf8Decode = encoder.GetDecoder();&lt;br /&gt;       byte[] todecode_byte = Convert.FromBase64String(sData);&lt;br /&gt;       int charCount = utf8Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);&lt;br /&gt;       char[] decoded_char = new char[charCount];&lt;br /&gt;       utf8Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);&lt;br /&gt;       string result = new String(decoded_char);&lt;br /&gt;       return result;  &lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-4158741427180742754?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/4158741427180742754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=4158741427180742754&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/4158741427180742754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/4158741427180742754'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/09/password-encryption-and-decription-in.html' title='Password encryption and decription in asp.net'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-2767007751497361801</id><published>2010-09-21T01:53:00.000-07:00</published><updated>2010-09-21T02:10:55.738-07:00</updated><title type='text'>Basic example of Stored procedure</title><content type='html'>Hai,&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;In Asp.net page&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["cnn"].ToString());&lt;br /&gt;con.Open();&lt;br /&gt;SqlCommand cmd = new SqlCommand("storedetails", con);&lt;br /&gt;cmd.CommandType = CommandType.StoredProcedure;&lt;br /&gt;cmd.Parameters.AddWithValue("@name", txtname.Text.Trim());&lt;br /&gt;cmd.Parameters.AddWithValue("@class", txtclass.Text.Trim());&lt;br /&gt;cmd.Parameters.AddWithValue("@mark", txtmark.Text.Trim());&lt;br /&gt;cmd.ExecuteNonQuery();&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;Query to create stored procedure&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;CREATE PROCEDURE storedetails&lt;br /&gt;@name varchar(30) = NULL,&lt;br /&gt;@class varchar(5) = NULL,&lt;br /&gt;@mark int = NULL &lt;br /&gt;AS&lt;br /&gt;BEGIN&lt;br /&gt;SET NOCOUNT ON;&lt;br /&gt;insert into student values(@name,@class,@mark)&lt;br /&gt;insert into result values(@name,@class)&lt;br /&gt;return&lt;br /&gt;OnError:  --If error exit gracefully&lt;br /&gt;Return&lt;br /&gt;END&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-2767007751497361801?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/2767007751497361801/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=2767007751497361801&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/2767007751497361801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/2767007751497361801'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/09/basic-example-of-stored-procedure.html' title='Basic example of Stored procedure'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-6676405414847704920</id><published>2010-04-23T07:59:00.000-07:00</published><updated>2010-04-23T08:31:12.337-07:00</updated><title type='text'>send mail from ASP.Net</title><content type='html'>Hai,&lt;br /&gt;&lt;br /&gt; Check the below program to send mail message from asp.net, on problem is that, it may reach in spam!!&lt;br /&gt;&lt;br /&gt;Imports System.Web&lt;br /&gt;Imports System.Web.Mail&lt;br /&gt;Imports System.Net&lt;br /&gt;Imports System.Net.Mail&lt;br /&gt;&lt;br /&gt;Protected Sub btnsendmail_Click(ByVal sender As Object, ByVal e As System.EventArgs)&lt;br /&gt;Dim status As Integer = sendMail("toaddress", "password", "XXXXX"&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;Public Function sendMail(ByVal toadd As String, ByVal pass As String, ByVal nm As String) As Integer     &lt;br /&gt;      Try         &lt;br /&gt;          Dim smtpClient As New SmtpClient&lt;br /&gt;          smtpClient.Host = "localhost"&lt;br /&gt;          smtpClient.Port = 25&lt;br /&gt;          Dim msg As New Net.Mail.MailMessage        &lt;br /&gt;          msg.From = New MailAddress("xxxxxxx@gmail.com")        &lt;br /&gt;          msg.To.Add(toadd)&lt;br /&gt;'Can add more toaddress, Cc and Bcc also&lt;br /&gt;          msg.Subject = "Haii"&lt;br /&gt;          msg.IsBodyHtml = True&lt;br /&gt;          msg.Body = "Hai " + nm + ",Your Login id is this mail address and Your pass word is :" + pass + "login now by&lt;a href="http://www.blogger.com/zdfsdd/myaccount.aspx"&gt; CLICKHERE&lt;/a&gt; "         &lt;br /&gt;          smtpClient.Send(msg)&lt;br /&gt;          Return (1)&lt;br /&gt;      Catch ex As Exception&lt;br /&gt;          Return (0)&lt;br /&gt;      End Try&lt;br /&gt;  End Function&lt;br /&gt;&lt;br /&gt;Note: Another referance for the people who have a configured smtpmailserver. Visit this link: &lt;a href="http://weblogs.asp.net/scottgu/archive/2005/12/10/432854.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2005/12/10/432854.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-6676405414847704920?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/6676405414847704920/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=6676405414847704920&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/6676405414847704920'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/6676405414847704920'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/04/send-mail-from-aspnet.html' title='send mail from ASP.Net'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-7851858171747334215</id><published>2010-03-11T03:52:00.000-08:00</published><updated>2010-03-11T04:23:05.368-08:00</updated><title type='text'>upload image in silverlight</title><content type='html'>Hai,&lt;div&gt;&lt;u&gt;Webservice&lt;/u&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;using System.IO;&lt;/div&gt;&lt;div&gt;using System.Configuration;&lt;/div&gt;&lt;div&gt;using System.Data;&lt;/div&gt;&lt;div&gt;&lt;div&gt; [WebMethod]&lt;/div&gt;&lt;div&gt;        public bool Upload(PictureFile picture)&lt;/div&gt;&lt;div&gt;        {&lt;/div&gt;&lt;div&gt;            FileStream fileStream = null;&lt;/div&gt;&lt;div&gt;            BinaryWriter writer = null;&lt;/div&gt;&lt;div&gt;            string filePath;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;            try&lt;/div&gt;&lt;div&gt;            {&lt;/div&gt;&lt;div&gt;                filePath = HttpContext.Current.Server.MapPath(".") +&lt;/div&gt;&lt;div&gt;                           ConfigurationManager.AppSettings["PictureUploadDirectory"] +&lt;/div&gt;&lt;div&gt;                           picture.PictureName;&lt;/div&gt;&lt;div&gt;                int i = 0;&lt;/div&gt;&lt;div&gt;                while (System.IO.File.Exists(filePath))&lt;/div&gt;&lt;div&gt;                {&lt;/div&gt;&lt;div&gt;                    string ext = System.IO.Path.GetExtension(filePath);&lt;/div&gt;&lt;div&gt;                    filePath = HttpContext.Current.Server.MapPath(".") +&lt;/div&gt;&lt;div&gt;                          ConfigurationManager.AppSettings["PictureUploadDirectory"] +&lt;/div&gt;&lt;div&gt;                          System.IO.Path.GetFileNameWithoutExtension(filePath) + i + ext;&lt;/div&gt;&lt;div&gt;                    i++;&lt;/div&gt;&lt;div&gt;                }&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;                if (picture.PictureName != string.Empty)&lt;/div&gt;&lt;div&gt;                {&lt;/div&gt;&lt;div&gt;                    fileStream = File.Open(filePath, FileMode.Create);&lt;/div&gt;&lt;div&gt;                    writer = new BinaryWriter(fileStream);&lt;/div&gt;&lt;div&gt;                    writer.Write(picture.PictureStream);&lt;/div&gt;&lt;div&gt;                }&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;                return true;&lt;/div&gt;&lt;div&gt;            }&lt;/div&gt;&lt;div&gt;            catch (Exception)&lt;/div&gt;&lt;div&gt;            {&lt;/div&gt;&lt;div&gt;                return false;&lt;/div&gt;&lt;div&gt;            }&lt;/div&gt;&lt;div&gt;            finally&lt;/div&gt;&lt;div&gt;            {&lt;/div&gt;&lt;div&gt;                if (fileStream != null)&lt;/div&gt;&lt;div&gt;                    fileStream.Close();&lt;/div&gt;&lt;div&gt;                if (writer != null)&lt;/div&gt;&lt;div&gt;                    writer.Close();&lt;/div&gt;&lt;div&gt;            }&lt;/div&gt;&lt;div&gt;        }&lt;/div&gt;&lt;div&gt;&lt;div&gt; public class PictureFile&lt;/div&gt;&lt;div&gt;    {      &lt;/div&gt;&lt;div&gt;        public string PictureName { get; set; }&lt;/div&gt;&lt;div&gt;        public byte[] PictureStream { get; set; }&lt;/div&gt;&lt;div&gt;    }&lt;/div&gt;&lt;div&gt;&lt;u&gt;Coding&lt;/u&gt;&lt;/div&gt;&lt;div&gt;&lt;u&gt;&lt;br /&gt;&lt;/u&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;using SilverlightApplicationgeetingcards.ServiceReference1;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;private void btneffects_Click(object sender, RoutedEventArgs e)&lt;/div&gt;&lt;div&gt;{&lt;/div&gt;&lt;div&gt;    OpenFileDialog openFileDialog = new OpenFileDialog();&lt;/div&gt;&lt;div&gt;    openFileDialog.Filter = "JPEG files|*.jpg";&lt;/div&gt;&lt;div&gt;    if (openFileDialog.ShowDialog() == true)&lt;/div&gt;&lt;div&gt;    {   &lt;/div&gt;&lt;div&gt;        Stream stream = (Stream)openFileDialog.File.OpenRead();//img11.Clip.GetValue(Image.ClipProperty); &lt;/div&gt;&lt;div&gt;        byte[] bytes = new byte[stream.Length];&lt;/div&gt;&lt;div&gt;        stream.Read(bytes, 0, (int)stream.Length);&lt;/div&gt;&lt;div&gt;        string fileName = openFileDialog.File.Name;//img11.Clip.GetValue(Image.SourceProperty).ToString(); &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;        PictureFile pictureFile = new PictureFile();&lt;/div&gt;&lt;div&gt;        pictureFile.PictureName = fileName;&lt;/div&gt;&lt;div&gt;        pictureFile.PictureStream = bytes;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;        services.UploadCompleted += new System.EventHandler&lt;uploadcompletedeventargs&gt;(uploadpicturecompleted);&lt;/div&gt;&lt;div&gt;        services.UploadAsync(pictureFile);   &lt;/div&gt;&lt;div&gt;    }&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;public void uploadpicturecompleted(object sender, UploadCompletedEventArgs e)&lt;/div&gt;&lt;div&gt;{&lt;/div&gt;&lt;div&gt;    if (e.Error == null)&lt;/div&gt;&lt;div&gt;    {&lt;/div&gt;&lt;div&gt;        if (e.Result)&lt;/div&gt;&lt;div&gt;        {   txtcomments.Text = "Upload succeeded (.'.)";  }&lt;/div&gt;&lt;div&gt;        else&lt;/div&gt;&lt;div&gt;        {   txtcomments.Text = "Upload failed ('.')";  }&lt;/div&gt;&lt;div&gt;    }&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-7851858171747334215?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/7851858171747334215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=7851858171747334215&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7851858171747334215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7851858171747334215'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/03/upload-image-in-silverlight.html' title='upload image in silverlight'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-8766467461184289738</id><published>2010-03-09T01:38:00.000-08:00</published><updated>2010-03-09T03:27:54.082-08:00</updated><title type='text'>How to host a silverlight website</title><content type='html'>Hai,&lt;div&gt; &lt;/div&gt;&lt;div&gt; To host a silverlight website or a website which includes the silverlight application. Note that the hosting is in your server and trying to configure in 'Windows server2003'.&lt;/div&gt;&lt;div&gt;1&gt;&lt;/div&gt;&lt;div&gt;Right click website on your iis-  properties- Home directory - Configure&lt;/div&gt;&lt;div&gt; O\on 'Mappings' tab - ''ADD" &lt;/div&gt;&lt;div&gt;Two new extensions- '.aspx' and '.wgx'  extensions and its executables.&lt;/div&gt;&lt;div&gt;The executable are same for both  .aspx and wgx that is "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll"&lt;/div&gt;&lt;div&gt;Check 'Script engine'  and uncheck 'verify that file exists'.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2&gt;&lt;/div&gt;&lt;div&gt;Right click server name - Properties - 'MIMEtypes' - 'New'&lt;/div&gt;&lt;div&gt;and add three new extensions and MIME type.&lt;/div&gt;&lt;div&gt;extension       MIMEType&lt;/div&gt;&lt;div&gt;.xap                 application/x-silverlight-2&lt;/div&gt;&lt;div&gt;.xaml               application/xaml+xml&lt;/div&gt;&lt;div&gt;.xbap               application/x-ms-xbap&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;These are the special settings to host silverlight website, all othrs are same to host &lt;/div&gt;&lt;div&gt;a normal website hosyting.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Referance: &lt;a href="http://weblogs.asp.net/visualwebgui/archive/2008/12/28/developing-and-deploying-a-visual-webgui-silverlight-application.aspx"&gt;http://weblogs.asp.net/visualwebgui/archive/2008/12/28/developing-and-deploying-a-visual-webgui-silverlight-application.aspx&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-8766467461184289738?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/8766467461184289738/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=8766467461184289738&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/8766467461184289738'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/8766467461184289738'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/03/how-to-host-silverlight-website.html' title='How to host a silverlight website'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-535520727254578840</id><published>2010-02-14T22:44:00.000-08:00</published><updated>2010-02-14T22:47:41.978-08:00</updated><title type='text'>Convert image to icon in asp.net</title><content type='html'>string filename, newfilename;&lt;br /&gt;filename= "E:/..../images/window.jpg";  // your image location&lt;br /&gt;newfilename= Path.ChangeExtension(filename, ".ico");&lt;br /&gt;using(Bitmap bitmap = Image.FromFile(filename, true) as Bitmap)&lt;br /&gt;{&lt;br /&gt;using (Icon icon = Icon.FromHandle(bitmap.GetHicon()))&lt;br /&gt;{&lt;br /&gt;using (Stream iconfile = File.Create(newfilename))&lt;br /&gt;{&lt;br /&gt;icon.Save(iconfile);&lt;br /&gt;Response.Write("Converted - " + newfilename);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Note: Get an icon file n the same folder of image with extension'.ico', it may not work properly,&lt;br /&gt;if the file size morethan 120X120. Try to choose small images.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-535520727254578840?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/535520727254578840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=535520727254578840&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/535520727254578840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/535520727254578840'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/convert-image-to-icon-in-aspnet.html' title='Convert image to icon in asp.net'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-1282799190536435377</id><published>2010-02-12T23:09:00.000-08:00</published><updated>2010-02-13T01:35:25.445-08:00</updated><title type='text'>Add an Existing silverlight Project to website</title><content type='html'>Hai,&lt;br /&gt;To add an existing silverlight project to a website.&lt;br /&gt;1) First we create / select a website.&lt;br /&gt;2) file- Add- Existing Project- select our silverlight project&lt;br /&gt;3) Delete the 'ClientBin' folder if there exist, note that if you have other files/folders than '.xap' file, don't forget to replace it temperly to other place.&lt;br /&gt;4) "Rightclick" on the website- AddNewItem- select silverlight project template,&lt;br /&gt;Show window with two option buttons, Click 'Use an existing silverlight project in this solution'. A combo box near it become enabled and show the silverlight project sin this solution(if you don't get a project go to step (2)).&lt;br /&gt;5) You will get a 'ClientBin' folder and get the '.xap' file in it.&lt;br /&gt;&lt;br /&gt;Note: View discussions about this topic: &lt;a href="http://k-mug.org/forums/t/1400.aspx"&gt;http://k-mug.org/forums/t/1400.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-1282799190536435377?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/1282799190536435377/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=1282799190536435377&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/1282799190536435377'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/1282799190536435377'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/add-existing-silverlight-project-to.html' title='Add an Existing silverlight Project to website'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-4883581725992233982</id><published>2010-02-12T22:48:00.000-08:00</published><updated>2010-02-13T01:31:30.205-08:00</updated><title type='text'>Add new silverlight project to website</title><content type='html'>Hai,&lt;br /&gt;We can create silverlight project in two ways:&lt;br /&gt;1) Create new project; New- project- silverlightproject&lt;br /&gt;2) create a website and add a new silverlight project to it;&lt;br /&gt;create new website-&gt; "rightclick" on website 'Add Newitem'- select silverlight project(create/ select new folder to hold the silverlight project, it is good to create a folder in the website folder)- click ok&lt;br /&gt;Note: Get a 'SilverlightTestpage.aspx' page which includes and show the silverlight '.xap' file output. '.xap' stores in'ClientBin' folder, if you want to show images, it ease to create a folder under 'Clientbin' folder and copy the images to it.&lt;br /&gt;Note: After closing your programming, you may get some problems to open recently closed silverlight application, then you should follow the link below &lt;a href="http://jineshrev.blogspot.com/2010/02/add-existing-silverlight-project-to.html"&gt;http://jineshrev.blogspot.com/2010/02/add-existing-silverlight-project-to.html&lt;/a&gt; View discussions about this topic: &lt;a href="http://k-mug.org/forums/t/1396.aspx"&gt;http://k-mug.org/forums/t/1396.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-4883581725992233982?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/4883581725992233982/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=4883581725992233982&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/4883581725992233982'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/4883581725992233982'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/add-new-silverlight-project-to-website.html' title='Add new silverlight project to website'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-5670849681525592316</id><published>2010-02-10T20:36:00.000-08:00</published><updated>2010-02-11T04:36:25.245-08:00</updated><title type='text'>Return datatable from Webservice</title><content type='html'>Hai,&lt;br /&gt;[WebMethod]&lt;br /&gt;public DataTable TestDatatable&lt;br /&gt;{          &lt;br /&gt;DataTable dt = new DataTable("AddressDatatable");     &lt;br /&gt;   dt.Columns.Add("Name",typeof(System.String));     &lt;br /&gt;    dt.Columns.Add("Address", typeof(System.String));    &lt;br /&gt;&lt;br /&gt;   DataRow dr = dt.NewRow();      &lt;br /&gt;   dr["Name"] = "Jinesh";        &lt;br /&gt; dr["Address"] = "RevathiBhavan";     &lt;br /&gt;    dt.Rows.Add(dr);          &lt;br /&gt;dr = dt.NewRow();      &lt;br /&gt;   dr["Name"] = "Retheesh";  &lt;br /&gt;       dr["Address"] = "RetheeshBhavan";       &lt;br /&gt;  dt.Rows.Add(dr);      &lt;br /&gt;   return dt;    &lt;br /&gt; }&lt;br /&gt;Client code:&lt;br /&gt;private void button1_Click(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;helloservice.Service1 service = new WindowsFormsApplication1.helloservice.Service1();&lt;br /&gt;DataTable dt = service.TestDatatable();&lt;br /&gt;}&lt;br /&gt;Note: If you don't give datatable name while declaring it may not not work properly.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-5670849681525592316?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/5670849681525592316/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=5670849681525592316&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/5670849681525592316'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/5670849681525592316'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/return-datatable-from-webservice.html' title='Return datatable from Webservice'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-5279048341060142580</id><published>2010-02-09T04:02:00.000-08:00</published><updated>2010-02-09T04:26:34.244-08:00</updated><title type='text'>Show photos in silverlight</title><content type='html'>//// .xaml&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_AM_RemRtXXM/S3FUH1znOSI/AAAAAAAAACE/8m1RQdrU_gs/s1600-h/jj.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5436218718892276002" style="WIDTH: 400px; CURSOR: hand; HEIGHT: 51px" alt="" src="http://2.bp.blogspot.com/_AM_RemRtXXM/S3FUH1znOSI/AAAAAAAAACE/8m1RQdrU_gs/s400/jj.bmp" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;//// .xaml.cs&lt;br /&gt;private void btn1_Click(object sender, RoutedEventArgs e)&lt;br /&gt;{&lt;br /&gt;show.Children.Add(displayalbums());&lt;br /&gt;}&lt;br /&gt;public Canvas displayalbums()&lt;br /&gt;{&lt;br /&gt;show.Children.Clear();&lt;br /&gt;Image img; int j = 0; double k = 1; int i;&lt;br /&gt;Canvas c = new Canvas();&lt;br /&gt;c.SetValue(Canvas.LeftProperty, 20.0);&lt;br /&gt;for (i = 0; i &lt; img =" new" height =" 100;" width =" 110;" src =" new" imgsource =" new" source =" imgSource;"&gt; 3)&lt;br /&gt;{ j = 0; k += 180.0; }&lt;br /&gt;}&lt;br /&gt;show.SetValue(Canvas.HeightProperty,(pagecounter(25))*180.0);&lt;br /&gt;return c;&lt;br /&gt;}&lt;br /&gt;public int pagecounter(int n)&lt;br /&gt;{&lt;br /&gt;int i, r;&lt;br /&gt;r = n % 4; // (4) denotes no. of items in each line&lt;br /&gt;i = n / 4;&lt;br /&gt;if (r &gt; 0)&lt;br /&gt;{ n = i + 1; }&lt;br /&gt;else&lt;br /&gt;{ n = i; }&lt;br /&gt;return n;&lt;br /&gt;}&lt;br /&gt;Note: Make sure that your client bin directory contains the older 'images' and&lt;br /&gt;all the images in that directory&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-5279048341060142580?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/5279048341060142580/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=5279048341060142580&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/5279048341060142580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/5279048341060142580'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/show-photos-in-silverlight.html' title='Show photos in silverlight'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_AM_RemRtXXM/S3FUH1znOSI/AAAAAAAAACE/8m1RQdrU_gs/s72-c/jj.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-732999296783513349</id><published>2010-02-08T20:51:00.000-08:00</published><updated>2010-02-08T21:09:31.253-08:00</updated><title type='text'>Login program in silverlight/ silverlight database connection</title><content type='html'>Dears,&lt;br /&gt;     Here a sample program to log in into a website using silverlight ....&lt;br /&gt;We can't connect a database directly with silverlight, we use webservices to connect a silverlight&lt;br /&gt;with database.&lt;br /&gt;////silverlight&lt;br /&gt;using System.Windows.Browser;&lt;br /&gt;using System.Windows.Data;&lt;br /&gt;&lt;br /&gt;using System.ServiceModel;&lt;br /&gt;using SilverlightApplication.ServiceReference1;&lt;br /&gt;&lt;br /&gt; private void btnlogin_Click(object sender, RoutedEventArgs e)&lt;br /&gt;        {     &lt;br /&gt;            if (txt1.Text != "" &amp;amp;&amp;amp; pwd.Password != "")&lt;br /&gt;            {&lt;br /&gt;                services.checkLoginCompleted += new System.EventHandler&lt;checklogincompletedeventargs&gt;(logincheckcompleted);&lt;br /&gt;                services.checkLoginAsync(txt1.Text, pwd.Password);               &lt;br /&gt;            }&lt;br /&gt;            else { MessageBox.Show("Username and Password shouldnot be blank"); }&lt;br /&gt;        }&lt;br /&gt;       &lt;br /&gt;        public void logincheckcompleted(object sender, checkLoginCompletedEventArgs e)&lt;br /&gt;        {&lt;br /&gt;            if (e.Result != 0)&lt;br /&gt;            {               &lt;br /&gt;                App appeg = (App)Application.Current;&lt;br /&gt;                appeg.clientid = Convert.ToInt32(e.Result);&lt;br /&gt;//It's alternative for session, we can re-use the app.xaml variable in page1.xml also&lt;br /&gt;                Page1 p = new Page1();&lt;br /&gt;                this.Content = p;&lt;br /&gt;            }&lt;br /&gt;            else&lt;br /&gt;            {&lt;br /&gt;                MessageBox.Show("Invalid User Credentials");               &lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;////Webservice&lt;br /&gt;[WebMethod]&lt;br /&gt;    public int checkLogin(string username, string password)&lt;br /&gt;    {&lt;br /&gt;        int retvalue=0;&lt;br /&gt;        retvalue =(int) frmclass.GetDBValue("select clientid from clientdetails where username='" + username + "' and password='" + password + "'");&lt;br /&gt;        return retvalue;&lt;br /&gt;    }&lt;br /&gt;////class- here all database related functions lies.&lt;br /&gt;&lt;br /&gt;public object GetDBValue(string sqlQuery)&lt;br /&gt;        {&lt;br /&gt;            object TheValue;&lt;br /&gt;            TheValue = 0;&lt;br /&gt;            OpenConnection();&lt;br /&gt;            db_Command.Connection = db_Connection;&lt;br /&gt;            db_Command.CommandText = sqlQuery;&lt;br /&gt;            db_Command.CommandType = CommandType.Text;&lt;br /&gt;            db_Reader = db_Command.ExecuteReader();&lt;br /&gt;            if (db_Reader.Read())&lt;br /&gt;            {&lt;br /&gt;                if (db_Reader[0] == null)&lt;br /&gt;                { TheValue = 0; }&lt;br /&gt;                else&lt;br /&gt;                { TheValue = db_Reader[0]; }&lt;br /&gt;            }&lt;br /&gt;            CloseConnection();&lt;br /&gt;            return TheValue;&lt;br /&gt;        }&lt;br /&gt;public void OpenConnection()&lt;br /&gt; { try&lt;br /&gt;   {&lt;br /&gt;    if (db_Connection.State != ConnectionState.Open)&lt;br /&gt;     { db_Connection.Open(); }&lt;br /&gt;   }&lt;br /&gt;  catch (Exception)&lt;br /&gt;   { }&lt;br /&gt; }&lt;br /&gt;public void CloseConnection()&lt;br /&gt;{&lt;br /&gt;  if (db_Connection.State != ConnectionState.Closed)&lt;br /&gt;   { db_Connection.Close(); }&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-732999296783513349?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/732999296783513349/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=732999296783513349&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/732999296783513349'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/732999296783513349'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/login-program-in-silverlight.html' title='Login program in silverlight/ silverlight database connection'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-2846231667419742294</id><published>2010-02-08T20:43:00.000-08:00</published><updated>2010-02-08T20:48:08.452-08:00</updated><title type='text'>Top five mistakes of .Net developers</title><content type='html'>Dears,&lt;br /&gt;&lt;br /&gt;Look the following link to read top five mistakes of .Net programming.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://amazedsaint.blogspot.com/2010/02/top-5-common-programming-mistakes-net.html"&gt;http://amazedsaint.blogspot.com/2010/02/top-5-common-programming-mistakes-net.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Note: This is the views from the blog: &lt;a href="http://amazedsaint.blogspot.com/"&gt;http://amazedsaint.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-2846231667419742294?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/2846231667419742294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=2846231667419742294&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/2846231667419742294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/2846231667419742294'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2010/02/top-five-mistakes-of-net-developers.html' title='Top five mistakes of .Net developers'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-7204953323230088169</id><published>2009-12-15T03:59:00.000-08:00</published><updated>2009-12-15T04:03:55.881-08:00</updated><title type='text'>Send sms from asp.net</title><content type='html'>Hai,&lt;br /&gt;&lt;br /&gt;    Paste the following link to the add 'webreferance' window.&lt;br /&gt;http://www.webservicex.net/SendSMS.asmx?wsdl&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;code&lt;/span&gt;&lt;br /&gt;try&lt;br /&gt; {&lt;br /&gt;   net.webservicex.www.SendSMS smsIndia = new net.webservicex.www.SendSMS();&lt;br /&gt;   net.webservicex.www.SMSResult smsre = new net.webservicex.www.SMSResult();&lt;br /&gt;&lt;br /&gt;   smsre=  smsIndia.SendSMSToIndia("+91"+TextBox1.Text, "jineshrev@gmail.com", "Haiiii");&lt;br /&gt;&lt;br /&gt;   Label1.Text = smsre.Status; //"Message Send Succesfully";&lt;br /&gt;  }&lt;br /&gt;  catch (Exception ex)&lt;br /&gt;      {&lt;br /&gt;        Label1.Text = "Error in Sending message" + ex.ToString();&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;  details will update later, Try it now...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-7204953323230088169?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/7204953323230088169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=7204953323230088169&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7204953323230088169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7204953323230088169'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2009/12/send-sms-from-aspnet.html' title='Send sms from asp.net'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-7500743501024553730</id><published>2009-12-11T22:13:00.000-08:00</published><updated>2009-12-11T22:18:54.628-08:00</updated><title type='text'>Importing from excel sheet to program/dataset</title><content type='html'>Hai,&lt;br /&gt;&lt;br /&gt;Try it...&lt;br /&gt;&lt;br /&gt;using System.Data.OleDb;&lt;br /&gt;&lt;br /&gt;string connectionString = "Provider=Microsoft.Jet.OleDb.4.0; Data Source=D:/Book11.xls; Extended Properties=Excel 8.0;";&lt;br /&gt;&lt;br /&gt;        using (OleDbConnection Connection = new OleDbConnection(connectionString))&lt;br /&gt;        {&lt;br /&gt;            Connection.Open();&lt;br /&gt;            using(OleDbCommand command = new OleDbCommand())&lt;br /&gt;             {&lt;br /&gt;                command.Connection = Connection;&lt;br /&gt;                command.CommandText = "select * from [Sheet1$]";&lt;br /&gt;  //Name of the sheet(sheet1), '$' specify it is an excel sheet. otherwise consider as tablename.             &lt;br /&gt;                DataSet ds = new DataSet();&lt;br /&gt;                OleDbDataAdapter da = new OleDbDataAdapter(command);&lt;br /&gt;                da.Fill(ds);&lt;br /&gt;//show it in a gridview&lt;br /&gt;                GridView1.DataSource = ds;&lt;br /&gt;                GridView1.DataBind();&lt;br /&gt;                Connection.Close();&lt;br /&gt;             }&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-7500743501024553730?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/7500743501024553730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=7500743501024553730&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7500743501024553730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7500743501024553730'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2009/12/importing-from-excel-sheet-to.html' title='Importing from excel sheet to program/dataset'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-7652042535247902346</id><published>2009-12-11T21:37:00.000-08:00</published><updated>2009-12-11T22:06:04.806-08:00</updated><title type='text'>Exporting data to excel sheet</title><content type='html'>Hai,&lt;br /&gt;&lt;br /&gt;Make sure that your excel sheet in'.xls' format........&lt;br /&gt;&lt;br /&gt;using System.Data.OleDb;&lt;br /&gt;&lt;br /&gt; connectionString = "Provider=Microsoft.Jet.OleDb.4.0; Data Source=D:/Book1.xls; Extended Properties=Excel 8.0;";&lt;br /&gt;&lt;br /&gt;    using(OleDbConnection Connection = new OleDbConnection(connectionString))&lt;br /&gt;    {&lt;br /&gt;    Connection.Open();&lt;br /&gt;   using(OleDbCommand command = new OleDbCommand())&lt;br /&gt;    {&lt;br /&gt;    command.Connection = Connection;&lt;br /&gt;    try&lt;br /&gt;    {&lt;br /&gt;        command.CommandText = "drop table Sample1";&lt;br /&gt;        command.ExecuteNonQuery();&lt;br /&gt;        command.CommandText = "CREATE TABLE Sample1(FirstName Char(255), LastName char(255), Email char(255))";&lt;br /&gt;        command.ExecuteNonQuery();&lt;br /&gt;    }&lt;br /&gt;       catch(Exception ex)&lt;br /&gt;    {&lt;br /&gt;    command.CommandText = "CREATE TABLE Sample1(FirstName Char(255), LastName char(255), Email char(255))";  &lt;br /&gt;    command.ExecuteNonQuery();&lt;br /&gt;       }&lt;br /&gt;    }&lt;br /&gt;    using(OleDbCommand command = new OleDbCommand())&lt;br /&gt;    {&lt;br /&gt;    command.Connection = Connection;&lt;br /&gt;    command.CommandText = "INSERT INTO Sample1(FirstName,LastName,Email) VALUES('Anuraj','P','anuraj.p@example.com')";&lt;br /&gt;    command.ExecuteNonQuery();&lt;br /&gt;    command.CommandText = "INSERT INTO Sample1(FirstName,LastName,Email) VALUES('sreekumar','VN','sreekumar.vn@example.com')";&lt;br /&gt;    command.ExecuteNonQuery();&lt;br /&gt;    command.CommandText = "INSERT INTO Sample1(FirstName,LastName,Email) VALUES('jinesh','B','jinesh.b@example.com')";&lt;br /&gt;    command.ExecuteNonQuery();&lt;br /&gt;    command.CommandText = "INSERT INTO Sample1(FirstName,LastName,Email) VALUES('ratheesh','S','ratheesh.s@example.com')";&lt;br /&gt;    command.ExecuteNonQuery();&lt;br /&gt;    }&lt;br /&gt;    DataSet ds = new DataSet();&lt;br /&gt;    OleDbDataAdapter da = new OleDbDataAdapter("select * from Sample1", Connection);&lt;br /&gt;    da.Fill(ds);&lt;br /&gt; &lt;br /&gt;   &lt;br /&gt;        DataGrid dgGrid = new DataGrid(); object missing = Type.Missing;&lt;br /&gt;&lt;br /&gt;        Microsoft.Office.Interop.Excel.Application oExcel=new Microsoft.Office.Interop.Excel.Application();&lt;br /&gt;        Microsoft.Office.Interop.Excel.Workbooks oBooks = (Microsoft.Office.Interop.Excel.Workbooks)oExcel.Workbooks;//;&lt;br /&gt;        Microsoft.Office.Interop.Excel._Workbook oBook = (Microsoft.Office.Interop.Excel._Workbook)(oBooks.Add(missing));&lt;br /&gt;&lt;br /&gt;        Microsoft.Office.Interop.Excel.Sheets oSheets = (Microsoft.Office.Interop.Excel.Sheets)oBook.Worksheets;//= new Microsoft.Office.Interop.Excel._Worksheet();&lt;br /&gt;        Microsoft.Office.Interop.Excel._Worksheet oSheet = (Microsoft.Office.Interop.Excel._Worksheet)(oSheets.get_Item(1));&lt;br /&gt;&lt;br /&gt;        Microsoft.Office.Interop.Excel.Range oRange = oSheet.get_Range("A1", missing);&lt;br /&gt;        oRange.Value2 =  "First Name";&lt;br /&gt;&lt;br /&gt;        oRange = oSheet.get_Range("B1", missing);&lt;br /&gt;        oRange.Value2 = "Last Name";&lt;br /&gt;&lt;br /&gt;        oRange = oSheet.get_Range("C1", missing);&lt;br /&gt;        oRange.Value2 = "Email";&lt;br /&gt;&lt;br /&gt;        oRange = oSheet.get_Range("A1", "C1");&lt;br /&gt;        Microsoft.Office.Interop.Excel.Font oFont = oRange.Font;&lt;br /&gt;        oFont.Bold = true; int j=1;&lt;br /&gt;        for (int i = 0; i &lt; ds.Tables[0].Rows.Count;i++)&lt;br /&gt;        {&lt;br /&gt;            j++;&lt;br /&gt;            oRange = oSheet.get_Range("A"+j, missing);&lt;br /&gt;            oRange.Value2 = ds.Tables[0].Rows[i][0];&lt;br /&gt;&lt;br /&gt;            oRange = oSheet.get_Range("B"+j, missing);&lt;br /&gt;            oRange.Value2 = ds.Tables[0].Rows[i][1];&lt;br /&gt;&lt;br /&gt;            oRange = oSheet.get_Range("C" +j, missing);&lt;br /&gt;            oRange.Value2 = ds.Tables[0].Rows[i][2];&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        oBook.SaveAs("D:/Book11.xls", missing, missing, missing, missing, missing, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing, missing);&lt;br /&gt;     &lt;br /&gt;        oBook.Close(false,missing,missing);&lt;br /&gt;        oExcel.Quit();&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-7652042535247902346?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/7652042535247902346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=7652042535247902346&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7652042535247902346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7652042535247902346'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2009/12/exporting-data-to-excel-sheet.html' title='Exporting data to excel sheet'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-2672202860927941750</id><published>2009-08-19T05:08:00.001-07:00</published><updated>2009-12-08T21:05:54.780-08:00</updated><title type='text'>NSS HSS, karuvatta</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_AM_RemRtXXM/SovrZNXH7PI/AAAAAAAAABo/WiZNwyciGZg/s1600-h/images1.jpeg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 130px; height: 91px;" src="http://1.bp.blogspot.com/_AM_RemRtXXM/SovrZNXH7PI/AAAAAAAAABo/WiZNwyciGZg/s320/images1.jpeg" alt="" id="BLOGGER_PHOTO_ID_5371645798885354738" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Famous school in karuvatta. Lacs of pupil passed from here and works&lt;br /&gt;different part of the world. Molding the society in more than last 50 years.&lt;br /&gt;Now you are sign inned in orkut&lt;br /&gt;Click &lt;a href="http://www.orkut.co.in/Main#Community?rl=cpn&amp;amp;cmm=23823136"&gt;HERE&lt;/a&gt; to reach NSSHSS orkut community.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-2672202860927941750?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/2672202860927941750/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=2672202860927941750&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/2672202860927941750'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/2672202860927941750'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2009/08/nss-hss-karuvatta.html' title='NSS HSS, karuvatta'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_AM_RemRtXXM/SovrZNXH7PI/AAAAAAAAABo/WiZNwyciGZg/s72-c/images1.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-7493088163651013467</id><published>2009-08-19T04:56:00.000-07:00</published><updated>2009-12-08T21:08:39.307-08:00</updated><title type='text'>Hallo, My most loving place.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_AM_RemRtXXM/SovqoJfwjcI/AAAAAAAAABg/89xlrhzyGZE/s1600-h/images.jpeg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 150px; height: 100px;" src="http://2.bp.blogspot.com/_AM_RemRtXXM/SovqoJfwjcI/AAAAAAAAABg/89xlrhzyGZE/s320/images.jpeg" alt="" id="BLOGGER_PHOTO_ID_5371644956034239938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;A view from back water side . it lies in north part of karuvatta.&lt;br /&gt;Every year conduct boat race.  A national water way.&lt;br /&gt;Now you are sign Inned in Orkut.&lt;br /&gt;Click &lt;a href="http://www.orkut.co.in/Main#Community?rl=cpn&amp;amp;cmm=29847554"&gt;HERE&lt;/a&gt; to reach in Orkut Karuvatta Community.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-7493088163651013467?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/7493088163651013467/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=7493088163651013467&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7493088163651013467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7493088163651013467'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2009/08/hallo.html' title='Hallo, My most loving place.'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_AM_RemRtXXM/SovqoJfwjcI/AAAAAAAAABg/89xlrhzyGZE/s72-c/images.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-7506749372935347948</id><published>2009-07-08T05:10:00.000-07:00</published><updated>2009-12-08T22:57:25.603-08:00</updated><title type='text'>haiiii</title><content type='html'>Hallo,&lt;br /&gt;    blog starts here.&lt;br /&gt;Click Here to view my &lt;a href="http://www.orkut.co.in/Main#Profile?rl=fpp&amp;amp;uid=15307253786321569225"&gt;ORKUT&lt;/a&gt; account&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-7506749372935347948?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/7506749372935347948/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=7506749372935347948&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7506749372935347948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/7506749372935347948'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2009/07/haiiii.html' title='haiiii'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2059844584429161477.post-1035035010695670350</id><published>2008-07-30T23:11:00.000-07:00</published><updated>2009-08-19T05:20:15.568-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='About me'/><title type='text'>Jinesh Profile</title><content type='html'>I am Jinesh B.  At Karuvatta.&lt;br /&gt;&lt;br /&gt;My email:&lt;br /&gt;&lt;br /&gt;&lt;a href="mailto:jineshputhenkulangara@yahoo.co.in"&gt; jineshrev@gmail.com&lt;/a&gt;&lt;br /&gt;&lt;a href="mailto:jineshrev@hotmail.com"&gt;jineshrev@hotmail.com&lt;/a&gt;&lt;br /&gt;&lt;a href="mailto:jineshputhenkulangara@yahoo.co.in"&gt; jineshrev@sify.com&lt;/a&gt;&lt;br /&gt;&lt;a href="mailto:jineshputhenkulangara@yahoo.co.in"&gt;jineshputhenkulangara@yahoo.co.in&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2059844584429161477-1035035010695670350?l=jineshrev.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jineshrev.blogspot.com/feeds/1035035010695670350/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2059844584429161477&amp;postID=1035035010695670350&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/1035035010695670350'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2059844584429161477/posts/default/1035035010695670350'/><link rel='alternate' type='text/html' href='http://jineshrev.blogspot.com/2008/07/jinesh-profile.html' title='Jinesh Profile'/><author><name>Jinesh B</name><uri>http://www.blogger.com/profile/10788705755869567343</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='26' src='http://3.bp.blogspot.com/_AM_RemRtXXM/S5YLc2QvC1I/AAAAAAAAACM/UrCKUPALr14/S220/image0150.JPG'/></author><thr:total>1</thr:total></entry></feed>
