<?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-33085916</id><updated>2011-11-27T16:28:19.241-08:00</updated><category term='as in C#'/><category term='datatable DataView DataRowFilter'/><category term='Free calling'/><category term='difference between storedprocedure and functions'/><category term='ShortDatePattern'/><category term='stored procedure'/><category term='hashtable'/><category term='as in .NET'/><category term='Make a copy of the object'/><category term='date format'/><category term='who am i'/><category term='brainbench'/><category term='International calling'/><category term='use of as in C#'/><category term='procedure vs functions'/><category term='Focusing on Problems and Focusing on Solutions'/><category term='C# keyword'/><category term='pradeep'/><category term='sql server function'/><category term='centification'/><category term='DateTime'/><category term='..net dates'/><category term='PC to Phone call'/><category term='carefull advise'/><category term='Health'/><category term='my report'/><category term='love you'/><category term='pradeep tiwari.'/><title type='text'>Wel - Come  to my postings</title><subtitle type='html'>You will get postings related to .net, c#, xml family and few words ralated to India. &lt;br/&gt;
MY OTHER LINKS &lt;br/&gt;
&lt;a href="http://happyrepublicdayindia.blogspot.com/"&gt;Abount India&lt;/a&gt;&lt;br/&gt;
&lt;a href=""&gt;About blogging &lt;/a&gt;&lt;/br&gt;
&lt;a href="www.zoompune.com" taget="_blank"&gt;ZoomPune&lt;/a&gt;

Thank you  &lt;br/&gt;
&lt;a href=""&gt;Pradeep Tiwari&lt;/a&gt;</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>24</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-33085916.post-538625290009681553</id><published>2010-06-29T02:53:00.000-07:00</published><updated>2010-06-29T03:04:19.249-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql server function'/><category scheme='http://www.blogger.com/atom/ns#' term='difference between storedprocedure and functions'/><category scheme='http://www.blogger.com/atom/ns#' term='procedure vs functions'/><category scheme='http://www.blogger.com/atom/ns#' term='stored procedure'/><title type='text'>procedure vs functions in sql server... 7 differences</title><content type='html'>Here are 7 difference i found between sql server procedure and user defined functions.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Procedure&lt;/span&gt;: Procedures are mainly used to process the tasks more aligned towards data stored in Database.&lt;br /&gt;&lt;br /&gt;1. Doesn't need to return values but can return value, return statement does not have any effect .&lt;br /&gt;&lt;br /&gt;2. Stored are compiled inside database and has execution plan ready.&lt;br /&gt;&lt;br /&gt;3. Can affect the state of database using DML and TCL operations.&lt;br /&gt;&lt;br /&gt;4. Cannot be invoked from SQL statements e.g. SELECT.&lt;br /&gt;&lt;br /&gt;5. Select statement returns data to client.&lt;br /&gt;&lt;br /&gt;6. It is allowed to create database objects. temporary and permanent objects.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Function &lt;/span&gt;: Functions are preferrably used to compute/calculate values.&lt;br /&gt;&lt;br /&gt;1. Must return at least one output parameter.Can return more than one parameter using OUT argument.&lt;br /&gt;&lt;br /&gt;   &lt;span style="font-weight:bold;"&gt;Error message&lt;/span&gt; we get "The last statement included within a function must be a return statement.".&lt;br /&gt;&lt;br /&gt;2. Parsed and compiled at run time.&lt;br /&gt;&lt;br /&gt;3. Cannot affect the state of database, Means it can not have UPDATE,DELETE kind of statements&lt;br /&gt;&lt;br /&gt;4. Can be invoked from SQL statement e.g. SELECT.&lt;br /&gt;&lt;br /&gt;5. A simple select statement does not return data to client.&lt;br /&gt; message we get is "Select statements included within a function cannot return data to a client."&lt;br /&gt;&lt;br /&gt;6. Object can't be create inside UDF. Like table, views etc&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-538625290009681553?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/538625290009681553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=538625290009681553' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/538625290009681553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/538625290009681553'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2010/06/procedure-vs-functions-in-sql-server-7.html' title='procedure vs functions in sql server... 7 differences'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-263229973955813306</id><published>2009-06-24T22:19:00.000-07:00</published><updated>2009-06-24T22:22:42.033-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='..net dates'/><category scheme='http://www.blogger.com/atom/ns#' term='ShortDatePattern'/><category scheme='http://www.blogger.com/atom/ns#' term='DateTime'/><category scheme='http://www.blogger.com/atom/ns#' term='date format'/><title type='text'>ShortDatePattern with MMM</title><content type='html'>I wanted date printed with the given culture format but to print month name instrad of month number like Jan instead of 01 in en-us,  I tried this with few combination and DateTimeFormat  along with RegEx came into rescue. here is the code.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;font-size:85%;color:#3333ff;"&gt;DateTime date = DateTime.Today; // Take a date to display in given format.&lt;br /&gt;CultureInfo culture = CultureInfo.GetCultureInfo("en-us"); // get a random calture.&lt;br /&gt;string datePattern = culture.DateTimeFormat.ShortDatePattern; // get short date format&lt;br /&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;color:#3333ff;"&gt;&lt;span style="font-family:arial;"&gt;datePattern = Regex.Replace(datePattern, "(?i)[m]+", "MMM"); // replace Month natation for MMM to get 3 char long month name&lt;br /&gt;Console.WriteLine(date.ToString(datePattern,culture)); // print date in given format&lt;br /&gt;&lt;br /&gt;datePattern = Regex.Replace(datePattern, "(?i)[m]+", "MMMM"); // replace Month natation for MMMM to get full month name.&lt;br /&gt;Console.WriteLine(date.ToString(datePattern, culture));&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Cheers!!!&lt;br /&gt;Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-263229973955813306?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/263229973955813306/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=263229973955813306' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/263229973955813306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/263229973955813306'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2009/06/shortdatepattern-with-mmm.html' title='ShortDatePattern with MMM'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-3729522465784787506</id><published>2009-06-10T11:50:00.000-07:00</published><updated>2009-06-10T11:53:57.860-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pradeep tiwari.'/><category scheme='http://www.blogger.com/atom/ns#' term='hashtable'/><category scheme='http://www.blogger.com/atom/ns#' term='pradeep'/><title type='text'>what a present surprise Hashtable and pradeep</title><content type='html'>While searching for something on google, to looked my post i ranked 1st on the google search. try&lt;br /&gt;&lt;strong&gt;hashtable + c# in google or (&lt;a href="http://www.google.co.in/search?hl=en&amp;amp;rlz=1T4HPAB_enIN250IN250&amp;amp;q=hashtable+%2B++C%23&amp;amp;meta=&amp;amp;aq=f&amp;amp;oq="&gt;click here&lt;/a&gt;)&lt;/strong&gt;. I feel now i should devote time to develop, teaching and writing skills :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-3729522465784787506?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/3729522465784787506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=3729522465784787506' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/3729522465784787506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/3729522465784787506'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2009/06/what-present-surprise-hashtable-and.html' title='what a present surprise Hashtable and pradeep'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-8269063189471653433</id><published>2009-05-02T14:00:00.000-07:00</published><updated>2009-05-02T14:01:38.530-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='who am i'/><title type='text'>Who am i ?</title><content type='html'>I am not talking about movie of  Jaki Chain with the same name,&lt;br /&gt;&lt;br /&gt;Who am i?&lt;br /&gt;Why am i here?&lt;br /&gt;and what will happen to me after my death?&lt;br /&gt;what is was before taking birth on earth ?&lt;br /&gt;&lt;br /&gt;who can answer these queries, i am not able to find the solution.&lt;br /&gt;&lt;br /&gt;--pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-8269063189471653433?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/8269063189471653433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=8269063189471653433' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/8269063189471653433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/8269063189471653433'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2009/05/who-am-i.html' title='Who am i ?'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-3332173348714938601</id><published>2008-05-20T03:34:00.000-07:00</published><updated>2008-05-20T04:44:07.695-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='datatable DataView DataRowFilter'/><title type='text'>do not forget to Remove DataRowFilter value</title><content type='html'>&lt;span style="color:#000000;"&gt;If you are playing with datatable`s DefaultView view then don`t forget to change it to default mode by setting RowFilter property of DefaultView to string.Empty, otherwise you may get in to trouble.&lt;br /&gt;Same happened with my one of colleague, and after 2 days debugging she came to me.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;== here is full code&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;using System;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.Text;&lt;br /&gt;using System.Data;&lt;br /&gt;&lt;br /&gt;namespace DatatableTest&lt;br /&gt;{&lt;br /&gt;public class DataTableOperationWrapper&lt;br /&gt;{&lt;br /&gt;DataTable dtTable;&lt;br /&gt;&lt;br /&gt;public bool ConstructDataTableAndFillData()&lt;br /&gt;{&lt;br /&gt;if (dtTable == null)&lt;br /&gt;{&lt;br /&gt;CreateTable();&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;dtTable.Rows.Clear();&lt;br /&gt;dtTable.AcceptChanges();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;DataRow dr = dtTable.NewRow();&lt;br /&gt;&lt;br /&gt;for (int i = 0; i &lt;&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dr["Name"] = "PersonName_" + i.ToString();&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dr["Age"] = i; dtTable.Rows.Add(dr); &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dr = dtTable.NewRow();&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dtTable.AcceptChanges(); &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;return true; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;private void CreateTable()&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dtTable = new DataTable(); &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dtTable.Columns.Add("Name", typeof(string)); &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dtTable.Columns.Add("Age", typeof(int)); &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;public void ApplyDataViewRowFilter(string fileterCondition) &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;if (dtTable == null) &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;ConstructDataTableAndFillData();&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;dtTable.DefaultView.RowFilter = fileterCondition; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;public DataTable GetResult()&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;if (dtTable == null) &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;new ApplicationException("DataTable is null"); &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;return dtTable; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;/// &lt;summary&gt;&lt;br /&gt;/// Remove the filters applied as DataRowFilter condition and get all the data from datatable.&lt;br /&gt;/// &lt;/summary&gt;&lt;br /&gt;public void RemoveDataViewRowFilter()&lt;br /&gt;{&lt;br /&gt;if (dtTable == null)&lt;br /&gt;{&lt;br /&gt;new ApplicationException("DataTable is null");&lt;br /&gt;}&lt;br /&gt;dtTable.DefaultView.RowFilter = string.Empty;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;== till here&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;i just tried to set RowFilter value to string.Empty and it worked.&lt;br /&gt;(Don`t get into design of class mentioned above.)&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Pradeep&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-3332173348714938601?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/3332173348714938601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=3332173348714938601' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/3332173348714938601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/3332173348714938601'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2008/05/do-not-forget-to-remove-datarowfilter.html' title='do not forget to Remove DataRowFilter value'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-9059118953341177289</id><published>2008-03-01T22:07:00.000-08:00</published><updated>2008-03-01T22:22:07.399-08:00</updated><title type='text'>World`s 3rd and 4th most poluted cities are in India</title><content type='html'>I just shocked, when i come to know India houses world`s 2 most polluted cities&lt;br /&gt;these are &lt;a href="http://www.mibazaar.com/pollutedcities.html"&gt;Vapi in Gujrat 4th Rank&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.mibazaar.com/pollutedcities.html"&gt;and Sukinda in Orissa 3rd Rank&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;here is location details &lt;a href="http://www.mibazaar.com/pollutedcities.html"&gt;http://www.mibazaar.com/pollutedcities.html&lt;/a&gt;&lt;br /&gt;What is conclustion : We have to ask people and government to look into the matter seriously, otherwise surrounding areas mey get affected.&lt;br /&gt;&lt;br /&gt;Thanks for your precious time...&lt;br /&gt;Pradeep Tiwari&lt;br /&gt;same post could be found at&lt;br /&gt;&lt;a href="http://happyrepublicdayindia.blogspot.com/"&gt;http://happyrepublicdayindia.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-9059118953341177289?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/9059118953341177289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=9059118953341177289' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/9059118953341177289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/9059118953341177289'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2008/03/worlds-3rd-and-4th-most-poluted-cities.html' title='World`s 3rd and 4th most poluted cities are in India'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-5550118024914408163</id><published>2008-02-28T21:38:00.000-08:00</published><updated>2008-02-28T21:47:22.504-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Health'/><category scheme='http://www.blogger.com/atom/ns#' term='love you'/><category scheme='http://www.blogger.com/atom/ns#' term='carefull advise'/><title type='text'>Health - Important Tips</title><content type='html'>&lt;span style="color:#3366ff;"&gt;Answer the phone by LEFT ear.&lt;br /&gt;Do not drink coffee TWICE a day.&lt;br /&gt;Do not take pills with COOL water.&lt;br /&gt;Do not have HUGE meals after 5pm.&lt;br /&gt;Reduce the amount of OILY food you consume.&lt;br /&gt;Drink more WATER in the morning, less at night.&lt;br /&gt;Keep your distance from hand phone CHARGERS.&lt;br /&gt;Do not use headphones/earphone for LONG period of time.&lt;br /&gt;Best sleeping time is from 10pm at night to 6am in the morning.&lt;br /&gt;Do not lie down immediately after taking medicine before sleeping.&lt;br /&gt;When battery is down to the LAST grid/bar, do not answer the phone as the radiation is 1000 times.&lt;br /&gt;Forward this to those whom you CARE about! &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;---Thanks and care&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;Pradeep &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-5550118024914408163?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/5550118024914408163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=5550118024914408163' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/5550118024914408163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/5550118024914408163'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2008/02/health-important-tips.html' title='Health - Important Tips'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-2140819631757396203</id><published>2008-02-19T08:40:00.000-08:00</published><updated>2008-02-19T09:23:00.985-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PC to Phone call'/><category scheme='http://www.blogger.com/atom/ns#' term='Free calling'/><category scheme='http://www.blogger.com/atom/ns#' term='International calling'/><title type='text'>Few Products which i like</title><content type='html'>Here are few products which i like, try then for your need too....&lt;br /&gt;&lt;br /&gt;1. For international calling (&lt;strong&gt;PC to phone call&lt;/strong&gt;) As this is the time people make calls without boundaries for things like H1b , friends and others, here is low cast calling solution &lt;br /&gt;&lt;a href="http://www.jdoqocy.com/click-2822571-10313883" target="_blank" onmouseover="window.status='http://www.iscom.net';return true;" onmouseout="window.status=' ';return true;"&gt;&lt;br /&gt;&lt;img src="http://www.ftjcfx.com/image-2822571-10313883" width="150" height="80" alt="" border="0"/&gt;&lt;/a&gt; &lt;a href="http://www.dpbolvw.net/click-2822571-9110647" target="_blank" onmouseover="window.status='http://www.iscom.net';return true;" onmouseout="window.status=' ';return true;"&gt;&lt;br /&gt;&lt;img src="http://www.tqlkg.com/image-2822571-9110647" width="125" height="125" alt="Save on long distance!" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2. Now a days, we see &lt;strong&gt;very exciting and full featured hand held devices from China&lt;/strong&gt;, at least those are very much popular in India now a days, you can shop them using this like and order for a bulk if you are ruing a business&lt;br /&gt;&lt;br /&gt;Hottest selling products include digital &lt;strong&gt;photo frames, MP4 players, and computer accessories&lt;/strong&gt;. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.tkqlhce.com/click-2822571-10497213" target="_blank" onmouseover="window.status='http://www.globalsourcesdirect.com';return true;" onmouseout="window.status=' ';return true;"&gt;&lt;br /&gt;&lt;img src="http://www.ftjcfx.com/image-2822571-10497213" width="125" height="125" alt="Buy Quality China Products from Our B2B Store" border="0"/&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks &lt;br /&gt;Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-2140819631757396203?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/2140819631757396203/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=2140819631757396203' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/2140819631757396203'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/2140819631757396203'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2008/02/few-products-which-i-like.html' title='Few Products which i like'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-4127687991548514634</id><published>2008-02-07T10:40:00.000-08:00</published><updated>2008-02-07T10:49:04.635-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='my report'/><category scheme='http://www.blogger.com/atom/ns#' term='centification'/><category scheme='http://www.blogger.com/atom/ns#' term='brainbench'/><title type='text'>I am a Brainbench certified C# programmer !!!!!</title><content type='html'>I`ve heardabout brainbench from lot of people, so when i got this link, i thought to have some fun, and i am brainbench certified C# developer !!!!!!!!!&lt;br /&gt;&lt;br /&gt;According to your survey i am about of 76% of people had accessment -- not bad.&lt;br /&gt;&lt;br /&gt;here is details,&lt;br /&gt;&lt;a href="http://www.brainbench.com/xml/bb/transcript/public/viewtranscript.xml?pid=7120700"&gt; my Report card &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;http://www.brainbench.com/xml/bb/transcript/public/viewtranscript.xml?pid=7120700&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- thanks&lt;br /&gt; Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-4127687991548514634?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.brainbench.com/xml/bb/transcript/public/viewtranscript.xml?pid=7120700' title='I am a Brainbench certified C# programmer !!!!!'/><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/4127687991548514634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=4127687991548514634' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/4127687991548514634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/4127687991548514634'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2008/02/i-am-brainbench-certified-c-programmer.html' title='I am a Brainbench certified C# programmer !!!!!'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-4726781569474072344</id><published>2007-11-22T23:13:00.000-08:00</published><updated>2007-11-22T23:23:59.343-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Make a copy of the object'/><title type='text'>Make a copy of the object</title><content type='html'>if we have a object and want to create a deep copy of it,then we need to implement deepCopy or copy type of method in the class (Type). and this must be repeated with each type (class) you have in ur system and want to create a copy of the object,&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;this simple class will replicate the object without using much of the resource.&lt;br /&gt;&lt;br /&gt;--Feedback are wellcome&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;Pradeep&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/// &lt;summary&gt;&lt;br /&gt;/// Public class containing function to replicate object without implementing copy or DeepCopy type of function&lt;br /&gt;/// &lt;/summary&gt;&lt;br /&gt;public class DeepCopyClass&lt;br /&gt;{&lt;br /&gt;/// &lt;summary&gt;&lt;br /&gt;/// Make a copy of the object passed as argument&lt;br /&gt;/// &lt;/summary&gt;&lt;br /&gt;/// &lt;param name="objObject"&gt;&lt;/param&gt;&lt;br /&gt;/// &lt;returns&gt;&lt;/returns&gt;&lt;br /&gt;public static object DeepCopyOfAnyTypeOfObject(object objAnyTypeOfObject)&lt;br /&gt;{&lt;br /&gt;BinaryFormatter binFormater = new BinaryFormatter();&lt;br /&gt;MemoryStream memStream = new MemoryStream();&lt;br /&gt;binFormater.Serialize(memStream, objAnyTypeOfObject);&lt;br /&gt;//Reset the posotion to initial so that it can read the bytes&lt;br /&gt;memStream.Position = 0;&lt;br /&gt;return binFormater.Deserialize(memStream);&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/33085916-4726781569474072344?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/4726781569474072344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=4726781569474072344' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/4726781569474072344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/4726781569474072344'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/11/make-copy-of-object.html' title='Make a copy of the object'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-3629057059009594853</id><published>2007-09-21T04:58:00.000-07:00</published><updated>2007-09-21T05:01:09.719-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Focusing on Problems and Focusing on Solutions'/><title type='text'>Difference between Focusing on Problems and Focusing on Solutions</title><content type='html'>Difference between Focusing on Problems and Focusing on Solutions&lt;br /&gt;&lt;br /&gt;Case 1&lt;br /&gt;&lt;br /&gt;When NASA began the launch of astronauts into space, they found out that the pens wouldn't work at zero gravity (Ink won't flow down to the writing surface). To solve this problem, it took them one decade and $12 million.&lt;br /&gt;&lt;br /&gt;They developed a pen that worked at zero gravity, upside down, underwater, in practically any surface including crystal and in a temperature range from below freezing to over 300 degrees C.&lt;br /&gt;&lt;br /&gt;And what did the Russians do...?? They used a pencil.&lt;br /&gt;&lt;br /&gt;Case 2&lt;br /&gt;&lt;br /&gt;One of the most memorable case studies on Japanese management was the case of the empty soapbox, which happened in one of Japan's biggest cosmetics companies. The company received a complaint that a consumer had bought a soapbox that was empty. Immediately the authorities isolated the problem to the assembly line, which transported all the packaged boxes of soap to the delivery department. For some reason, one soapbox went through the assembly line empty. Management asked its engineers to solve the problem.&lt;br /&gt;&lt;br /&gt;Post-haste, the engineers worked hard to devise an X-ray machine with high-resolution monitors manned by two people to watch all the soapboxes that passed through the line to make sure they were not empty. No doubt, they worked hard and they worked fast but they spent a whoopee amount to do so.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;But when a file employee in India in a small company was posed with the same problem, he did not get into complications of X-rays, etc., but instead came out with another solution. He bought a strong industrial electric fan and pointed it at the assembly line. He switched the fan on, and as each soapbox passed the fan, it simply blew the empty boxes out of the line.&lt;br /&gt;&lt;br /&gt;Moral: &lt;br /&gt;&lt;br /&gt;Always look for simple solutions.&lt;br /&gt;&lt;br /&gt;Devise the simplest possible solution that solves the problems&lt;br /&gt;&lt;br /&gt;Always focus on solutions &amp; not on problems&lt;br /&gt;&lt;br /&gt;So at the end of the day, the thing that really matters is HOW ONE LOOK INTO THE PROBLEM, mere perceptions can solve the toughest of problems....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-3629057059009594853?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/3629057059009594853/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=3629057059009594853' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/3629057059009594853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/3629057059009594853'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/09/difference-between-focusing-on-problems.html' title='Difference between Focusing on Problems and Focusing on Solutions'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-1418875423419313701</id><published>2007-08-03T04:46:00.000-07:00</published><updated>2007-08-03T05:56:19.729-07:00</updated><title type='text'>how to invoke a new application from .net</title><content type='html'>how to invoke a new application from .net&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public enum OpenMode&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;Mode_HIDE = 0,&lt;br /&gt;Mode_SHOWNORMAL = 1,&lt;br /&gt;Mode_SHOWMINIMIZED = 2,&lt;br /&gt;Mode_SHOWMAXIMIZED = 3,&lt;br /&gt;Mode_MAXIMIZE = 3,&lt;br /&gt;Mode_SHOWNOACTIVATE = 4,&lt;br /&gt;Mode_SHOW = 5,&lt;br /&gt;Mode_MINIMIZE = 6,&lt;br /&gt;Mode_SHOWMINNOACTIVE = 7,&lt;br /&gt;Mode_SHOWNA = 8,&lt;br /&gt;Mode_RESTORE = 9,&lt;br /&gt;Mode_SHOWDEFAULT = 10,&lt;br /&gt;Mode_FORCEMINIMIZE = 11,&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;[DllImport("shell32.dll")]&lt;br /&gt;static extern IntPtr ShellExecute(IntPtr hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, OpenMode opnMode);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;and use this method to call exes&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//ShellExecute(this.Handle,"open",textBox1.Text,"","",ShowCommands.SW_MAXIMIZE);&lt;br /&gt;// ShellExecute( IntPtr.Zero, "open", "mailto:support@microsoft.com", "", "", ShowCommands.SW_SHOWNOACTIVATE );&lt;br /&gt;//ShellExecute( this.Handle, "open", textBox1.Text, "", "", ShowCommands.SW_SHOWNOACTIVATE );&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;and replace textBox1.Text with proper exename&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-1418875423419313701?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/1418875423419313701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=1418875423419313701' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/1418875423419313701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/1418875423419313701'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/08/how-to-invoke-new-application-from-net.html' title='how to invoke a new application from .net'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-882914960374148332</id><published>2007-07-18T03:59:00.000-07:00</published><updated>2008-01-30T20:12:01.407-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='as in .NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C# keyword'/><category scheme='http://www.blogger.com/atom/ns#' term='as in C#'/><category scheme='http://www.blogger.com/atom/ns#' term='use of as in C#'/><title type='text'>"as in C#"  can be used with reference type or nullable types</title><content type='html'>&lt;span style="color:#990000;"&gt;ControlTypeEnum myEnum = Enum.ToObject(typeof(ControlTypeEnum),id) as ControlTypeEnum ;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#996633;"&gt;here ControlTypeEnum as an Enum &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#996633;"&gt;and id is int value&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;will give an error&lt;br /&gt;"&lt;span style="color:#ff0000;"&gt;Error 2 The &lt;strong&gt;as&lt;/strong&gt; operator must be used with a reference type or nullable type ('ControlTypeEnum' is a non-nullable value type)&lt;/span&gt; "&lt;br /&gt;&lt;br /&gt;because if type casting is not possible then in that case reference point to null, and in case of value type -we do not have the concept of null .&lt;br /&gt;&lt;br /&gt;so .net 2.0 has concept of nullable types, like int?, float? (&lt;span style="color:#3366ff;"&gt;hay there is no string? - do u kow why ? think and u will get it.&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;so proper syntex of the previous one is&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#33ccff;"&gt;ControlTypeEnum? myEnum = Enum.ToObject(typeof(ControlTypeEnum),id) as ControlTypeEnum ;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#33ccff;"&gt;ControlTypeEnum myEnum = (ControlTypeEnum ) Enum.ToObject(typeof(ControlTypeEnum),id) ;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;--thanks&lt;br /&gt;Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-882914960374148332?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/882914960374148332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=882914960374148332' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/882914960374148332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/882914960374148332'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/07/as-in-c-can-be-used-with-reference-type.html' title='&quot;as in C#&quot;  can be used with reference type or nullable types'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-4583311826637892978</id><published>2007-06-13T02:32:00.000-07:00</published><updated>2007-06-13T02:38:15.924-07:00</updated><title type='text'>how to rename tables</title><content type='html'>select ' exec sp_rename '''+ name + ''' , ''zOLD_'+name +'''' from sys.objects where type_desc = 'user_table' and name not like 'zold%' order by [name]&lt;br /&gt;&lt;br /&gt;here&lt;br /&gt;name - actual table name&lt;br /&gt;changed name will be zOLD_[TableName]&lt;br /&gt;&lt;br /&gt;selected from sys.tables, alternatively u can select it from sys table&lt;br /&gt;&lt;br /&gt;execute this query and copy the result into new Query analyser&lt;br /&gt;&lt;br /&gt;and here is script that will do the disaster.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-4583311826637892978?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/4583311826637892978/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=4583311826637892978' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/4583311826637892978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/4583311826637892978'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/06/how-to-rename-tables.html' title='how to rename tables'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-7812392677695104021</id><published>2007-06-01T05:43:00.000-07:00</published><updated>2007-06-01T05:44:20.393-07:00</updated><title type='text'>The type System.Collections.Hashtable is not supported because it implements IDictionary.</title><content type='html'>When you will work with webservices and want to&lt;br /&gt;1. Send an object that implements IDirectory Interface&lt;br /&gt;2. Receive an object that Implement IDirectory Interface&lt;br /&gt;&lt;br /&gt;most commonly used object from this category is HashTable.&lt;br /&gt;&lt;br /&gt;so if a hashtable is passed to or returned froma a webmethod, we get a very specific error.&lt;br /&gt;"The type System.Collections.Hashtable is not supported because it implements IDictionary."&lt;br /&gt;&lt;br /&gt;this is because "IDictionary cannot be serialized via XML".&lt;br /&gt;&lt;br /&gt;here is very interesting fact from MS guy (Dare Obasanjo,Microsoft Corporation,January 23, 2003)&lt;br /&gt;&lt;br /&gt;Q: Why can't I serialize hashtables?&lt;br /&gt;A: The XmlSerializer cannot process classes implementing the IDictionary interface.&lt;br /&gt;This was partly due to schedule constraints and partly due to the fact that a hashtable does not have a&lt;br /&gt;counterpart in the XSD type system. The only solution is to implement a custom hashtable that does not&lt;br /&gt;implement the IDictionary interface.&lt;br /&gt;(&lt;a href="http://msdn2.microsoft.com/en-us/library/ms950721.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms950721.aspx&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;there are many possible solutions out of them here are two :&lt;br /&gt;&lt;br /&gt;1. Convert this object into Jagged Arrays.&lt;br /&gt;2. Implement a custom object which behave like wrapper to this hashtable (remember it must not expose this hashtable publicily).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1.      Jagged arrrays :-&lt;br /&gt;A Jagged arrray is nothing but arrays of arrays (any type) OR&lt;br /&gt;A jagged array is a single dimensional array of arrays. The elements of a jagged array can be of different dimensions and sizes. It’s better to use jagged arrays instead of multidimensional arrays to benefit from MSIL performance optimizations. MSIL has specific instructions that target single dimensional zero-based arrays and even access to this type of array is optimized&lt;br /&gt;&lt;br /&gt;  EX.   int[][] intJagged;&lt;br /&gt;  Or object [][]objHashTable&lt;br /&gt;  Or T[][] CustomTypeArray&lt;br /&gt;&lt;br /&gt;There are two possibilites,&lt;br /&gt;if your data contains one level of information means value field of hashtable contains premitive datatype values you can use&lt;br /&gt;any of premitive type of jagged array.&lt;br /&gt;object [][]objHashTable&lt;br /&gt;&lt;br /&gt;and if it of custom type them use&lt;br /&gt;T [][] objCustom&lt;br /&gt;Note : this schenerio is not tested please verify it before use.&lt;br /&gt;&lt;br /&gt;2. Custom object :-&lt;br /&gt;In my case this hashtable was containing DataObject of a type which was subtype of for another DataObject means there was one to many relation&lt;br /&gt;so i implemented it like this&lt;br /&gt;&lt;br /&gt;subTypeDO&lt;br /&gt;{&lt;br /&gt;  attributes ;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;superTypeDO&lt;br /&gt;{&lt;br /&gt;  attributes;&lt;br /&gt;  List&lt;subtypedo&gt; objSubTypeDO;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;remember in this case subTypeDO is a fat Data object (other wise jagged arrays are perfect)&lt;br /&gt;&lt;br /&gt;Another use of collections in .net .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Try which one works for you, may be u`ll find some other way, second one worked for me.&lt;br /&gt;&lt;br /&gt;Thanks&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-7812392677695104021?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/7812392677695104021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=7812392677695104021' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/7812392677695104021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/7812392677695104021'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/06/type-systemcollectionshashtable-is-not.html' title='The type System.Collections.Hashtable is not supported because it implements IDictionary.'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-116901685603341459</id><published>2007-01-16T22:53:00.000-08:00</published><updated>2007-01-16T22:57:22.890-08:00</updated><title type='text'>TimeOut Expired in ado.net and sql server</title><content type='html'>Some times we feel if we can speed up the sqlserver , or database, and get rid of the a specific problem named "timeout expired" &lt;br /&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-6055326515821016"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_type = "text_image"; //2007-01-08: ChannelX, ChannelY google_ad_channel = "2343079878+5408152729"; //--&gt;&lt;/script&gt;&lt;br /&gt;&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;here`s a link for the same , and now onwards u will not pray to god, we have solution at ur hand &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/TimeoutExpired01162007044625AM/TimeoutExpired.aspx?ArticleID=9e1dbc56-ad57-4f0e-841d-a92788cd61b7"&gt;let`s go &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;thanks &lt;br /&gt;Pradeep Tiwari&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-116901685603341459?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/TimeoutExpired01162007044625AM/TimeoutExpired.aspx?ArticleID=9e1dbc56-ad57-4f0e-841d-a92788cd61b7' title='TimeOut Expired in ado.net and sql server'/><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/116901685603341459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=116901685603341459' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116901685603341459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116901685603341459'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/01/timeout-expired-in-adonet-and-sql.html' title='TimeOut Expired in ado.net and sql server'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-116893327985120021</id><published>2007-01-15T23:38:00.000-08:00</published><updated>2007-01-16T22:59:38.640-08:00</updated><title type='text'>timeout expired - ado.net</title><content type='html'>&lt;strong&gt;Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Help for ADO.net objects &lt;br /&gt;&lt;br /&gt;Some times we get “timeout expired” error.&lt;br /&gt;It may be because of actually time allocated to a particular operation is getting timeout so start debugging.&lt;br /&gt;&lt;br /&gt;1st thing to keep in mind is there is two types of time out &lt;br /&gt;1. Connection time out  (which is property (read only) of connection object) default (15 sec) &lt;br /&gt;2. Command time out (which is property (read , write) of command object) default (30 sec)&lt;br /&gt;&lt;br /&gt;To start with 1st one means Connection Time out : solution is to increase the value say 60 seconds &lt;br /&gt;And for this you will rush to your connection object and as u got a property named ConnectionTimeout and u wil put the code &lt;br /&gt;conn.ConnectionTimeout = 60; (60 seconds)&lt;br /&gt;&lt;br /&gt;and according to you every thing is okey, BUT NOT ACCORDING TO ADO.NET &lt;br /&gt;this is read only property.&lt;br /&gt;Work around is to chage your connection string (usually we have this in our web.config or app.config) by putting “connection timeout = 60” or “connect timeout = 60”&lt;br /&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-6055326515821016"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_type = "text_image"; //2007-01-08: ChannelX, ChannelY google_ad_channel = "2343079878+5408152729"; //--&gt;&lt;/script&gt;&lt;br /&gt;&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;Now is you check your connection string, it will use 60 seconds value.&lt;br /&gt; &lt;br /&gt;This solution may or may not resolve the problem as there is an another operation connection to this “command” and command it self call time out.&lt;br /&gt;&lt;br /&gt;This is 2nd case &lt;br /&gt;&lt;br /&gt;To start with Command Time out : solution is increase the value say 60 seconds &lt;br /&gt;And again for this you will rush to ur web.config or app.config and try to accommodate “command timeout = 60” but this will not work for your kind information, information placed at this place is used by connection not by command object.&lt;br /&gt;The work around is,  command.commandTimeout is a read and write property means you can set the value directly in code.&lt;br /&gt;Like “Command.CommandTimeout = 900”,  if u r using DataAdopter, not a issue just use its proper command type (select, update , delete).&lt;br /&gt;And set this property to a numeric value.&lt;br /&gt;&lt;br /&gt;(best example of lateral thinking)&lt;br /&gt;&lt;br /&gt;or you can access the same at &lt;br /&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/TimeoutExpired01162007044625AM/TimeoutExpired.aspx?ArticleID=9e1dbc56-ad57-4f0e-841d-a92788cd61b7"&gt;timeout Expired&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-116893327985120021?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/116893327985120021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=116893327985120021' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116893327985120021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116893327985120021'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2007/01/timeout-expired-adonet.html' title='timeout expired - ado.net'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-116712324423676681</id><published>2006-12-26T00:52:00.000-08:00</published><updated>2006-12-26T00:54:04.250-08:00</updated><title type='text'>Have some hair pulling exercise</title><content type='html'>Visit at&lt;br /&gt;&lt;a href="http://rollbacktheworld.blogspot.com/"&gt;http://rollbacktheworld.blogspot.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;happy hair pulling....&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-116712324423676681?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://rollbacktheworld.blogspot.com/' title='Have some hair pulling exercise'/><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/116712324423676681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=116712324423676681' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116712324423676681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116712324423676681'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/12/have-some-hair-pulling-exercise.html' title='Have some hair pulling exercise'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-116532126226347655</id><published>2006-12-05T04:16:00.000-08:00</published><updated>2007-01-16T23:15:30.373-08:00</updated><title type='text'>Tips when working With Master page or SqlDataSource insert function</title><content type='html'>ADD by Google&lt;br /&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-6055326515821016"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_type = "text_image"; //2007-01-08: ChannelX, ChannelY google_ad_channel = "2343079878+5408152729"; //--&gt;&lt;/script&gt;&lt;br /&gt;&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;/br&gt;&lt;br /&gt;Hello here is a posting related to cross container controls access and also a tip related to SqlDataSource.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/SubContainersandSqlDataSource12052006065429AM/SubContainersandSqlDataSource.aspx?ArticleID=13d1b1f3-5997-4ce9-9562-9bf3a847c199"&gt;Go&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;When We are Working with subcontainers and wanted to access controls from other containers, which is more prominent situation with Master pages , inbuild container controls comes along with VS or with user controls, a tip related to this and a tip related to datasource`s insert command text .&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/SubContainersandSqlDataSource12052006065429AM/SubContainersandSqlDataSource.aspx?ArticleID=13d1b1f3-5997-4ce9-9562-9bf3a847c199"&gt;So just into the posting&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;Pradeep&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-116532126226347655?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/SubContainersandSqlDataSource12052006065429AM/SubContainersandSqlDataSource.aspx?ArticleID=13d1b1f3-5997-4ce9-9562-9bf3a847c199' title='Tips when working With Master page or SqlDataSource insert function'/><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/116532126226347655/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=116532126226347655' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116532126226347655'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116532126226347655'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/12/tips-when-working-with-master-page-or.html' title='Tips when working With Master page or SqlDataSource insert function'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-116238116353925188</id><published>2006-11-01T03:36:00.000-08:00</published><updated>2006-11-21T02:58:35.230-08:00</updated><title type='text'>11 days to go</title><content type='html'>Since last few days, i got much more feedback abt my blog and most of them advisied me to keep separated page for Technical articals and personal articals,&lt;br /&gt;&lt;br /&gt;Even i think they are correct !!!!,&lt;br /&gt;i wanna jsut say Sorry  to all of them and i`ll start a new thread for my personal postings&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Pradeep Tiwari&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-116238116353925188?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/116238116353925188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=116238116353925188' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116238116353925188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/116238116353925188'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/11/11-days-to-go.html' title='11 days to go'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-115701486351644797</id><published>2006-08-31T01:58:00.000-07:00</published><updated>2006-08-31T02:01:03.523-07:00</updated><title type='text'>I am bit rearranging my BLOG</title><content type='html'>Hello to all,&lt;br /&gt;&lt;br /&gt;I am bit rearranging my BLOG, Sorry for inconvenince caused to you.&lt;br /&gt;all the posts which are removed will be up in few days..&lt;br /&gt;&lt;br /&gt;keep visiting&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Pradeep tiwari&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-115701486351644797?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/115701486351644797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=115701486351644797' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115701486351644797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115701486351644797'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/08/i-am-bit-rearranging-my-blog.html' title='I am bit rearranging my BLOG'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-115700241478871501</id><published>2006-08-30T22:31:00.000-07:00</published><updated>2006-11-07T04:44:18.230-08:00</updated><title type='text'>introduction of HashTable using .net</title><content type='html'>Many a times we need to store similar data in our propgram, and you might encounter the situation where the descriminating item is not an integer value ,&lt;br /&gt;&lt;br /&gt;What to do?  Use &lt;strong&gt;Hashtable&lt;/strong&gt; ..&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;Enjoy Have nice Time !!!&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Pradeep Tiwari &lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-115700241478871501?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/PradeepTiwariHashtable11072006072247AM/PradeepTiwariHashtable.aspx?ArticleID=2548f7ef-c9f2-4259-969e-713d8b4d297f' title='introduction of HashTable using .net'/><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/115700241478871501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=115700241478871501' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115700241478871501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115700241478871501'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/08/introduction-of-hashtable-using-net.html' title='introduction of HashTable using .net'/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-115623198903109913</id><published>2006-08-22T00:32:00.000-07:00</published><updated>2006-08-30T05:22:48.413-07:00</updated><title type='text'></title><content type='html'>Hello &lt;a href="http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/DynamicBuildingandExecutionOfAssemblyUsingCodeDomeAndReflection08212006072200AM/DynamicBuildingandExecutionOfAssemblyUsingCodeDomeAndReflection.aspx"&gt;here`s a posting on  &lt;span style="color:#cc0000;"&gt;&lt;strong&gt;Dynamic building and execution of assembly at runtime  in .net,  &lt;span style="color:#666666;"&gt;&lt;/a&gt;this posting is coded in .net 2.0 but can be modified for .net 1.x &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#666666;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#666666;"&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/pradeep.tiwari/DynamicBuildingandExecutionOfAssemblyUsingCodeDomeAndReflection08212006072200AM/DynamicBuildingandExecutionOfAssemblyUsingCodeDomeAndReflection.aspx"&gt;Enjoy !&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#666666;"&gt;have nice time &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#666666;"&gt;Pradeep Tiwari&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-115623198903109913?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/115623198903109913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=115623198903109913' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115623198903109913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115623198903109913'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/08/hello-heres-posting-on-dynamic.html' title=''/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-33085916.post-115614496913683201</id><published>2006-08-21T00:22:00.000-07:00</published><updated>2006-08-21T00:22:49.136-07:00</updated><title type='text'></title><content type='html'>hello good morning&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Pradeep Tiwari&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/33085916-115614496913683201?l=tiwaripradeep.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tiwaripradeep.blogspot.com/feeds/115614496913683201/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=33085916&amp;postID=115614496913683201' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115614496913683201'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/33085916/posts/default/115614496913683201'/><link rel='alternate' type='text/html' href='http://tiwaripradeep.blogspot.com/2006/08/hello-good-morning-pradeep-tiwari.html' title=''/><author><name>Pradeep</name><uri>http://www.blogger.com/profile/11400634000810212155</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
