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
metro application currency converter metro application currency converter Reviewed by Bhaumik Patel on 7:36 PM Rating: 5

Email ID validation in wpf

Bhaumik Patel 7:26 PM
Email ID validation in wpf String RegExpression = "\\w+([-+.']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"; System.Text.Regula...Read More
Email ID validation in wpf Email ID validation in wpf Reviewed by Bhaumik Patel on 7:26 PM Rating: 5

linq take

Bhaumik Patel 7:07 AM
linq Take Partitioning Operators public static void Take() { int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; ...Read More
linq take linq take Reviewed by Bhaumik Patel on 7:07 AM Rating: 5

weather application c#

Bhaumik Patel 8:28 PM
weather application metro style application Config .Net 4.0 WPF xml parsing Screenshot : Download HereRead More
weather application c# weather application c# Reviewed by Bhaumik Patel on 8:28 PM Rating: 5

Get Internet Connected State c#

Bhaumik Patel 4:02 AM
Internet Connected State c# [DllImport("wininet.dll")] private extern static bool InternetGetConnectedState(out int Des...Read More
Get Internet Connected State c# Get Internet Connected State c# Reviewed by Bhaumik Patel on 4:02 AM Rating: 5
textbox numeric validation c# textbox numeric validation c# Reviewed by Bhaumik Patel on 3:58 AM Rating: 5

linq EqualAll

Bhaumik Patel 3:55 AM
linq EqualAll public static void EqualAll() { var wordsA = new string[] { "cherry", "apple", &quo...Read More
linq EqualAll linq EqualAll Reviewed by Bhaumik Patel on 3:55 AM Rating: 5

linq Concat

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

WPF MaskedTextBox

Bhaumik Patel 12:21 AM
MaskedTextBox First Adding Reference to WPF Toolkit Extended Assembly The MaskedTextBox control lets you display and edit values bas...Read More
WPF MaskedTextBox WPF MaskedTextBox Reviewed by Bhaumik Patel on 12:21 AM Rating: 5

WPF DecimalUpDown

Bhaumik Patel 12:09 AM
DecimalUpDown First Adding Reference to WPF Toolkit Extended Assembly Usage When using the DecimalUpDown in data binding scenar...Read More
WPF DecimalUpDown WPF DecimalUpDown Reviewed by Bhaumik Patel on 12:09 AM Rating: 5