Hello Folks, This is the second section of my FIRST Video Presentation in IntStrings.com, Hope you guys enjoy it. The outline of the presentation – PART # 1 – Getting started with Entity Framework 4 in VS 2010. PART # 2 – Creating Model from existing Database (NorthWind Sample Database). PART # 3 – [...]
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 (29548 views )
- Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email records PART - II (18382 views )
- Create a Simple WCF service against Pubs Database using EF, LINQ – Part I (11907 views )
- JQuery POST & GET Request to WCF Service in ASP.Net MVC (11802 views )
- Access Code-behind variables in ASPX and JavaScript (11348 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 (9231 views )
- Access JavaScript Variables in Code-Behind Class (8631 views )
- Simple Html Editor based Comments Section with Captcha feature along with Database Interactivity (8148 views )
- Data Transfer between two ASP.NET Pages (7873 views )
- Save the World (6710 views )
- Retrieve files from a table in Database using Generic Handler (5646 views )
- Save files to a table in Database using FileUpload control (5521 views )
- ASP.Net MVC–Simple Application Security using Password Hashing before storing it to Database (5326 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 (4263 views )
- JQuery Quickies #1 – GalleryView Plugin by Jack Anderson (3817 views )
- Book Review - MCTS Exam 70-536 Microsoft .NET Framework – Application Development Foundation Self Paced Training Kit - Tony Northrup (3491 views )
- Implementing MVP Pattern using UserControls with WCF Database Operations in Entity Framework and LINQ – PART I (3352 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
Entity Framework – Creating Model from Existing Database and using it in Sample Project – Video Tutorial # 2
RamiVemula on June 2, 2010 at 11:13 am
Filed under:C#, Entity Framework, Videos
Entity Framework – Creating Model from Existing Database and using it in Sample Project – Video Tutorial # 1
RamiVemula on June 2, 2010 at 10:54 am
Hello Folks, This is the starting section of my FIRST Video Presentation in IntStrings.com, Hope you guys enjoy it. The outline of the presentation – PART # 1 – Getting started with Entity Framework 4 in VS 2010. PART # 2 – Creating Model from existing Database (NorthWind Sample Database). PART # 3 – [...]
Filed under:C#, Entity Framework, Videos
JumpStart # 5 – Access Properties of a UserControl from other UserControl in ASP.Net Page
RamiVemula on May 26, 2010 at 8:20 pm
1. It is sometimes required to make UserControls communicate between each other. So the following demo is used to show the same.
2. Even though there are advantages in communicating the Usercontrols, in some cases it increases the dependency between them which can hinder the robustness of the page.
LINQ Traffic # 3 – Aggregate Query Operators
RamiVemula on May 25, 2010 at 2:04 pm
The present article demonstrates – “How to use LINQ Aggregate Query Operators”.
Aggregate Operators –
Max
Min
Sum
Count
LongCount
Average
Aggregate
LINQ Traffic # 2 – Restriction Query Operator
RamiVemula on May 22, 2010 at 9:09 pm
The present article demonstrates – “How to use LINQ Restriction Query Operator”.
Restriction Operator –
Where
LINQ Traffic # 1 – Projection Query Operators
RamiVemula on May 20, 2010 at 1:35 pm
The present article demonstrates – “How to use LINQ Projection Query Operators”.
Projection Operators –
Select
SelectMany
JumpStart # 4 – validateRequest in ASP.Net
RamiVemula on May 17, 2010 at 7:36 pm
validateRequest –
1. It is feature which is responsible for the page not submitting un-encoded html or script as input
in asp.net.
2. When user try to submit html or script with validateRequest enabled, asp.net throws an exception -
“A potentially dangerous Request.Form value was detected from the client”.
JumpStart # 3 – ViewStateMode in ASP.Net 4.0
RamiVemula on May 14, 2010 at 12:45 am
Before looking at the code, Read about – What is JumpStart? <%@ Page Language="C#" EnableViewState="true"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> /* ViewStateMode – * 1) It is a new feature in ASP.Net 4.0. Using this we have explicit control on the controls * which participate in viewstate, thereby preventing [...]
JumpStart # 2 – OUT Parameter in C#
RamiVemula on May 13, 2010 at 12:49 am
Before looking at the code, Read about – What is JumpStart? <%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> /* OUT PARAMETER – * 1) OUT parameter is almost in similar with REF keyword (both passes the reference, but not * actual value), but it can be used [...]
JumpStart # 1 – Using Optional And Named Parameters in C#
RamiVemula on May 12, 2010 at 11:25 am
Before looking at the code, Read about – What is JumpStart? <%@ Page Language="C#" %> <%@ Import Namespace="System.Runtime.InteropServices" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { // Call with only name optionalParameterMethod("John"); //call with name and state optionalParameterMethod("Scott", "AK"); //call with name, state and [...]
Data Transfer between two ASP.NET Pages
RamiVemula on March 15, 2010 at 11:53 am
In most of the present day Web Applications, it is required to transfer data from one web page to another web page. Requirements like maintaining user preferences across the application, identifying user between transactions, correlating data based on previous page options etc, always drive programmers to write code to transfer data from page to page.
There are numerous ways in accomplishing the above said tasks, selecting an appropriate way for an appropriate situation is vested in the hands of programmer. Some of the most prominent techniques, out of my knowledge are listed in this article. Read More…
Filed under:ARTICLE
Book Review – MCTS Exam 70-536 Microsoft .NET Framework – Application Development Foundation Self Paced Training Kit – Tony Northrup
RamiVemula on March 12, 2010 at 1:06 pm
Two months back when I started to think about giving my first Microsoft certification – MCTS 70-536 exam, the first thing came into my mind is to grab a text book and start preparing for the exam. Immediately my book hunt initiated and obviously my first place to search is Microsoft.com. There I came across this worthy book, written by Mr. Tony Northrup, a MVP, MCSE, MCTS, and CISSP. I picked up the book in local bookstore and started reading it. Read More…
Filed under:GENERAL
Access JavaScript Variables in Code-Behind Class
RamiVemula on January 24, 2010 at 7:29 pm
After writing the article on how to “Access Code-Behind variables in ASPX and JavaScript”, my focus continued on this particular counteract concept. At times we got to transfer some data from client side JavaScript to code-behind on some particular requirements. For example when the screen resolution of the client’s web browser is needed to be known in code-behind, then the simple way to accomplish is to access JavaScript variable in Code-Behind.Read More…
Filed under:ARTICLE
Enumerating, Managing and Monitoring File system using C#
RamiVemula on January 6, 2010 at 7:15 pm
Applications often need to read and write data to the disk, sometimes for the sake of user and most of the times for its internal use. To do this task we need to review the present file system of the disk and then manage the resources according to our requirements. In some applications, it is required to monitor any changes made to the file system and notify them accordingly.
Although there are number of articles written on the web about this topic, still I want to go with this topic in detailed for one more time. The main aim of this article is to understand the file system and manage it through some inbuilt C# classes. The article is written keeping beginners in mind.Read More…
Filed under:C#
Jobs in UK: C#.Net & ASP.Net
RamiVemula on January 2, 2010 at 7:51 pm
The post illustrate four job oppertunities: C#.NET Analyst / Developer (Cambridge), C#.Net Asp.Net Web Developer / Consultant (Chesham), Web Developers – C#/ASP.NET (Basingstoke), C#.Net Asp.Net Web Developer (Amersham). For further details Read More…
Filed under:Job






