Country dropdown c#

Bhaumik Patel 7:36 PM
Country dropdown without list Add reference using System.Globalization; Country combobox without list of country with NativeName and so mor...Read More
Country dropdown c# Country dropdown c# Reviewed by Bhaumik Patel on 7:36 PM Rating: 5

linq Except

Bhaumik Patel 6:49 PM
linq Except public static void Except() { int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 }; int[] numbersB = { 1, 3,...Read More
linq Except linq Except Reviewed by Bhaumik Patel on 6:49 PM Rating: 5

Url Rewriting in Asp.net

vishal 11:46 AM
Url rewriting is usefull for SEO.It provides us SEO friendly url. Suppose you want to rewrite the following url http://www.urlrewrite.com/...Read More
Url Rewriting in Asp.net Url Rewriting in Asp.net Reviewed by vishal on 11:46 AM Rating: 5

linq Intersect

Bhaumik Patel 6:59 PM
linq Intersect public static void Intersect() { int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 }; int[] numbersB = {...Read More
linq Intersect linq Intersect Reviewed by Bhaumik Patel on 6:59 PM Rating: 5
Uploading Multiple Files by Dynamically generated FileUpload Control in c#.Net Uploading Multiple Files by Dynamically generated FileUpload Control in c#.Net Reviewed by vishal on 7:52 AM Rating: 5
asp.net Substitution and Caching example asp.net Substitution and Caching example Reviewed by vishal on 6:34 AM Rating: 5

asp.net Cross-Page PostBack

vishal 5:54 AM
Create  CrossPagePostBack.aspx &lt;%@ Page Language="C#" %&gt; <script runat="server"> </script> &l...Read More
asp.net Cross-Page PostBack asp.net Cross-Page PostBack Reviewed by vishal on 5:54 AM Rating: 5

linq Union

Bhaumik Patel 7:03 PM
linq Union public static void Union() { int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 }; int[] numbersB = { 1, 3, 5...Read More
linq Union linq Union Reviewed by Bhaumik Patel on 7:03 PM Rating: 5

linq Distinct

Bhaumik Patel 7:01 PM
linq Distinct This sample uses Distinct to remove duplicate elements in a sequence of factors of 300. public static void Distinct() ...Read More
linq Distinct linq Distinct Reviewed by Bhaumik Patel on 7:01 PM Rating: 5

Watermark textbox in wpf

Bhaumik Patel 7:11 PM
Watermark textbox in wpf This is a sample which demonstrates how to create a watermark textbox in WPF: Create : WatermarkTextBox.cs u...Read More
Watermark textbox in wpf Watermark textbox in wpf Reviewed by Bhaumik Patel on 7:11 PM Rating: 5

jquery no conflict

Bhaumik Patel 7:22 PM
jQuery.noConflict() Example: Creates a different alias instead of jQuery to use in the rest of the script. var j = jQuery.noConflict(); /...Read More
jquery no conflict jquery no conflict Reviewed by Bhaumik Patel on 7:22 PM Rating: 5

linq Aggregate

Bhaumik Patel 6:59 PM
linq Aggregate public static void Aggregate() { // Aggregate - Simple double[] doubles = { 1.7, 2.3, 1.9, 4....Read More
linq Aggregate linq Aggregate Reviewed by Bhaumik Patel on 6:59 PM Rating: 5

linq Average

Bhaumik Patel 6:34 PM
linq Average This sample uses Average to get the average of all numbers in an array. public static void Average() { //...Read More
linq Average linq Average Reviewed by Bhaumik Patel on 6:34 PM Rating: 5

linq Max

Bhaumik Patel 6:28 PM
linq Max Get the Min and Max value from a query. public static void Max() { // Max - Simple int[] numbers ...Read More
linq Max linq Max Reviewed by Bhaumik Patel on 6:28 PM Rating: 5
Update Panel not working in Google Chrome Update Panel not working in Google Chrome Reviewed by vishal on 8:32 AM Rating: 5

linq Min

Bhaumik Patel 7:16 PM
linq Min Get the Min and Max value from a query. public static void Min() { // Min - Simple int[] numbers ...Read More
linq Min linq Min Reviewed by Bhaumik Patel on 7:16 PM Rating: 5

linq Sum

Bhaumik Patel 6:35 PM
linq Sum public static void Sum() { // Sum - Simple int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; ...Read More
linq Sum linq Sum Reviewed by Bhaumik Patel on 6:35 PM Rating: 5

linq Count

Bhaumik Patel 6:52 PM
linq Count public static void Count() { // linq Count - Simple int[] factorsOf300 = { 2, 2, 3, 5, 5 };...Read More
linq Count linq Count Reviewed by Bhaumik Patel on 6:52 PM Rating: 5

linq Reverse

Bhaumik Patel 6:58 PM
linq Reverse public static void Reverse() { string[] digits = { "zero", "one", "two", &...Read More
linq Reverse linq Reverse Reviewed by Bhaumik Patel on 6:58 PM Rating: 5

linq OrderBy

Bhaumik Patel 7:29 PM
linq OrderBy descending or ascending linq OrderBy public static void OrderBy() { string[] words = { "cherry&qu...Read More
linq OrderBy linq OrderBy Reviewed by Bhaumik Patel on 7:29 PM Rating: 5
Google Buzz Posting from Asp.net Web Application Google Buzz Posting from Asp.net Web Application Reviewed by vishal on 5:17 AM Rating: 5

linq SkipWhile

Bhaumik Patel 6:48 PM
SkipWhile public static void SkipWhile() { int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; var allButF...Read More
linq SkipWhile linq SkipWhile Reviewed by Bhaumik Patel on 6:48 PM Rating: 5

Send Email from Gmail in asp.net

vishal 7:15 AM
Simplest Way of Sending Email from Gmail protected void btnSendEmail_Click(object sender, EventArgs e) { //Create Mail Message Object wit...Read More
Send Email from Gmail in asp.net Send Email from Gmail in asp.net Reviewed by vishal on 7:15 AM Rating: 5
Client-Side Event to disable button immediately. Client-Side Event to disable button immediately. Reviewed by vishal on 6:34 AM Rating: 5

linq TakeWhile

Bhaumik Patel 8:15 PM
Linq TakeWhile public static void TakeWhile() { int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; var first...Read More
linq TakeWhile linq TakeWhile Reviewed by Bhaumik Patel on 8:15 PM Rating: 5

Get url in asp.net

Bhaumik Patel 1:17 AM
Get url in asp.net string url = HttpContext.Current.Request.Url.AbsoluteUri; // http://localhost:1302/TESTERS/Default6.aspx string path = H...Read More
Get url in asp.net Get url in asp.net Reviewed by Bhaumik Patel on 1:17 AM Rating: 5

linq Skip

Bhaumik Patel 7:41 PM
Linq Skip public static void Skip() { int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; var allButFirst4...Read More
linq Skip linq Skip Reviewed by Bhaumik Patel on 7:41 PM Rating: 5