Often we write lot of extension methods which helps us in consolidating logic and performing operations on objects in a easy way. In this tutorial I m going to narrate on how to implement IEnumerable<T> on extension methods which helps us in extending our extension method on every object which implements IEnumerable implementation say [...]
Most Popular (Last 7 days)
- How to send an Email using C# - complete features
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records PART - II
- JQuery POST & GET Request to WCF Service in ASP.Net MVC
- Create a Simple WCF service against Pubs Database using EF, LINQ – Part I
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records – Part I
- Create a Simple WCF Service Client against Pubs Database using EF, LINQ – Part II
- Access Code-behind variables in ASPX and JavaScript
- Simple Html Editor based Comments Section with Captcha feature along with Database Interactivity
- ASP.Net MVC–Simple Application Security using Password Hashing before storing it to Database
- Access JavaScript Variables in Code-Behind Class
Most Popular (All time)
- How to send an Email using C# - complete features (29546 views )
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records PART - II (18381 views )
- Create a Simple WCF service against Pubs Database using EF, LINQ – Part I (11906 views )
- JQuery POST & GET Request to WCF Service in ASP.Net MVC (11800 views )
- Access Code-behind variables in ASPX and JavaScript (11347 views )
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records – Part I (11262 views )
- Create a Simple WCF Service Client against Pubs Database using EF, LINQ – Part II (9230 views )
- Access JavaScript Variables in Code-Behind Class (8630 views )
- Simple Html Editor based Comments Section with Captcha feature along with Database Interactivity (8148 views )
- Data Transfer between two ASP.NET Pages (7872 views )
- Save the World (6709 views )
- Retrieve files from a table in Database using Generic Handler (5645 views )
- Save files to a table in Database using FileUpload control (5520 views )
- ASP.Net MVC–Simple Application Security using Password Hashing before storing it to Database (5325 views )
- How to download files from server to client using a Generic Handler (4340 views )
- AJAX HTML Editor based Contact Form inside UpdatePanel along with UpdateProgress (4262 views )
- JQuery Quickies #1 – GalleryView Plugin by Jack Anderson (3816 views )
- Book Review - MCTS Exam 70-536 Microsoft .NET Framework – Application Development Foundation Self Paced Training Kit - Tony Northrup (3490 views )
- Implementing MVP Pattern using UserControls with WCF Database Operations in Entity Framework and LINQ – PART I (3351 views )
- File Download by Anil (3330 views )
JumpStart Tutorials
- JumpStart # 11 - Xml Comments for code using GhostDoc Extension
- JumpStart # 10 – Display Validation Error Messages in different formats using JavaScript
- JumpStart # 9 – Make Response.Redirect() open in New Blank Window
- JumpStart # 8 – Making Client CallBacks by Implementing ICallBackEventHandler Interface
- JumpStart # 7 – Handling UserControl’s Event from Parent Page
- JumpStart # 6 – Accessing CheckBoxList Control in JavaScript and making a Mandatory Selection Enabled
- JumpStart # 5 – Access Properties of a UserControl from other UserControl in ASP.Net Page
- JumpStart # 4 – validateRequest in ASP.Net
- JumpStart # 3 – ViewStateMode in ASP.Net 4.0
- JumpStart # 2 – OUT Parameter in C#
- JumpStart # 1 - Using Optional And Named Parameters in C#
Latest Entries
Extension Methods with Lambda Expressions and IEnumerable Interface Implementation
RamiVemula on May 18, 2012 at 12:35 am
Dropdownlist Validation in ASP.Net MVC 3–Razor
RamiVemula on May 12, 2012 at 9:39 pm
In this short tutorial, I am going to show how to validate a Dropdownlist in MVC3 using Razor Syntax. Our Model Class – using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; namespace DropdownListValidation.Models { public class DropdownListModel { [Required( ErrorMessage = "Selection is a MUST" )] public string SelectedItem { [...]
Filed under:ARTICLE, ASP.Net MVC, C#
Why ASP.Net MVC and why not Webforms?
RamiVemula on May 11, 2012 at 4:39 pm
Its been a while since I blogged, but I am back with some new series coming through, mainly focusing on MVC and JQuery. This small blog post is out to answer some of the common questions which I do see most often – “Differences between ASP.Net and ASP.Net MVC”, “Why ASP.Net MVC?” etc. Out of [...]
Filed under:ARTICLE, ASP.Net, ASP.Net MVC, GENERAL
well wises by Srinivasa prabhu.N
Guest on May 7, 2012 at 8:28 pm
Dear ram. Good day.I have seen u in asp.net.Anyway happy to see u on instrings too. U also was replied to one of my query in asp.net forum.I would linke to ask assistance from you. I am also willing to do MCP and tried in 1st attempt i not able to do so. Can u [...]
Filed under:ASP.Net, USER TOPICS
Checking the database availability every 15 minutes by sumanth
Guest on May 6, 2012 at 9:40 pm
I need an automated windows application script which checks multiple oracle database availability and if any database is unavailable it should send an email The script should run every 15 minutes Thanks in advance
Filed under:ASP.Net, USER TOPICS
previouspage by Sai Chander A
Guest on May 6, 2012 at 9:22 pm
private void Form1_Load(object sender, EventArgs e) { TextBox pp_Textbox1; Calendar pp_Calendar1; pp_Textbox1 = (TextBox)PreviousPage.FindControl(“Textbox1″); pp_Calendar1 = (Calendar)PreviousPage.FindControl(“Calendar1″); label1.Text = “Hello ” + pp_Textbox1.Text + “” + “Date Selected: ” + pp_Calendar1.SelectedDate.ToShortDateString(); this simple program has two errors previouspage.findcontrol() does not exist in current context selecteddate.toshortdate();
Filed under:ASP.Net, USER TOPICS
How to Retrieve Variable value from javascript by SureshKumar Gorrela
Guest on May 6, 2012 at 9:19 pm
I want to retrieve some variable value from javascript into C# code behind….Pls Help me out to solve this issue… Thanks in Advance, Suresh Kumar G
Filed under:ASP.Net, USER TOPICS
How to convert a url to my domain name url? by sumit
Guest on May 5, 2012 at 9:10 pm
Suppose i got one url like http://www.example.com from some where.Now i want to convert it with my own domain name url some thing like http://www.demo.com/go.aspx?id=1(where http://www.demo.com is my website). It means whenever i would like to browse this url in browser it will show http://www.example.com. PLEASE SUGGEST or mail me please at sumit.burnwal@gmail.com … Regards, [...]
Filed under:ASP.Net, USER TOPICS
Password security + MVC by Srinivas Alwala
Guest on January 8, 2012 at 6:39 pm
Hi Ravi Vemula, I have a doubt in the password security + MVC application topic. If we look at the code the password is passing as plain text over the channel. If we want to implement a internet website using MVC, i think this approach of implementation is not satisfactory as hackers can use a [...]
Filed under:ASP.Net, USER TOPICS
Being a Microsoft MVP for Second time
RamiVemula on January 7, 2012 at 8:22 pm
Good Day one and all, I wrote a post – Being a Microsoft MVP exactly one year back, and now time has yet arrived to narrate a similar post, but a year older and wiser post. Earlier this week I was re-awarded with Microsoft MVP 2012 by Microsoft Corporation. I thank Microsoft Corporation and many [...]
Filed under:GENERAL
Restore a Database using PowerShell
RamiVemula on January 7, 2012 at 4:32 pm
In the last post I narrated a PowerShell script which can backup a database – Backup a Database using PowerShell. In this post I want to show how to restore a Database from a backup file using PowerShell.
Filed under:ARTICLE, PowerShell
About Sending mail with PDF file attachment by Miketa Patel
Guest on January 7, 2012 at 12:14 pm
Hello, In your code i m facing some problem . When i run this code , I getting this error ” The CLR has been unable to transition from COM context 0x31e320 to COM context 0x31e490 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait [...]
Filed under:ASP.Net, USER TOPICS
Backup a Database using PowerShell
RamiVemula on January 6, 2012 at 11:01 pm
Of late I was working a lot in administering SharePoint enterprise products developed by my Dev. team. Often I landed up with lot of repetitive work back and froth, especially with databases. I stepped back and went to my SQL Basis, I explored various options to perform my daily routine Database tasks but found PowerShell [...]
Filed under:ARTICLE, PowerShell
Happy New Year 2012–My life in 2011
RamiVemula on January 3, 2012 at 2:44 pm
Hello All, First of all I wish one and all a very happy new year 2012, may all have peace and prosperity through out and may this year bring the lights of eternal happiness along with fragrance of everlasting blossoms of joy into your lives. Coming back its been quite a bit of time since [...]
DateTime by DateTime Format Problem
Guest on October 19, 2011 at 6:49 pm
Hello Sir.. Will u please help me to solve this Problem http://forums.asp.net/t/1670099.aspx/1?DateTime+Days+Cout
Filed under:ASP.Net, USER TOPICS






