Articles submitted by members via their Technical Blog feed. Want to have the blog entries from
your Technical Blog automatically posted as articles on CodeProject? It's
easy!
1.
Understanding TempData in detail
What is TempData? Tempdata let us maintain data within single request cycle Example: publicActionResult M1() { TempData["a"] = "Value"; string s = TempData["a"].ToString(); returnRedirectToAction("M2"); } publicActionResult M2() { string s = TempData["a"].ToString(); // Data will be available return
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Marla Sukesh
|
Updated: 12 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
2.
Is WPF dead: the present and future of WPF
Introduction As a WPF developer for years I was recently concerned by the new direction chosen by Microsoft on its client platforms with the rise of the brand new WinRT framework. I was concerned for good reasons: I’ve suffered from … Continue reading →
(The Code Project Open License (CPOL))
Languages »
Other .NET Languages »
General
|
Pragmateek
|
Updated: 12 Sep 2014
Rating: 5.00/5
(2 votes)
|
|
3.
What are The Different Types of Database Backups?
If you are just beginning SQL Server database administration then you might not be familiar with the different types of database backups that are available and exactly what they backup. This post is going to outline the different types of backups and specifically what they backup, but keep in mind
(The Code Project Open License (CPOL))
Database »
Database »
SQL Server
|
derekman9707
|
Updated: 12 Sep 2014
Rating:
(No votes for this Article)
|
|
4.
Attaching to Telerik MVC Grid’s Client Event using jQuery
How to subscribe to Telerik MVC Grid component events from jQuery
(The Code Project Open License (CPOL))
Web Development »
Client side scripting »
General
|
Gediminas Geigalas
|
Updated: 12 Sep 2014
Rating:
(No votes for this Article)
|
|
5.
.NET just keeps getting more annoying
It seems like the little design flaws of .NET get on my nerves more and more every week.Today I realized that I wanted to do a binary search. No problem--I put a binary search method in Loyc.Essentials; four independent implementations, in fact, one for IList, one for T[], and two for more obscure s
(The GNU Lesser General Public License (LGPLv3))
Languages »
Other .NET Languages »
General
|
Qwertie
|
Updated: 12 Sep 2014
Rating: 4.47/5
(6 votes)
|
|
6.
Paper Effect Google Maps
A friend of mine Marlon Grech, has his own business and he has a nice parallax effect web site : http://www.thynksoftware.com/ and over there on his “contact us2 page, it has this very cool folding Google maps thing. I have wondered how it was done for a while now, today I decided to find out. [R
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Sacha Barber
|
Updated: 11 Sep 2014
Rating:
(No votes for this Article)
|
|
7.
Properties in C#
Before talking about Property in C# I want to tell you about other mechanism that can also use in place of Properties- Make the class filed public- Making the class fields public and exposing to the external world is bad, as you will not have control over what gets assigned and returned. We can unde
(The Code Project Open License (CPOL))
|
Akash Ashok Jain
|
Updated: 11 Sep 2014
Rating: 3.47/5
(6 votes)
|
|
8.
C#: Building a Useful, Extensible .NET Console Application Template for Development and Testing
How often do you find yourself tossing together a console application for the purpose of trying out code, "testing" in the sense of seeing what works best, or, possibly, as a means to demo some library of function? I do, a lot. And I usually end up with some horrid mess which, while never intended
(The Code Project Open License (CPOL))
|
John Atten
|
Updated: 11 Sep 2014
Rating: 4.85/5
(14 votes)
|
|
9.
It’s Simple!! Or Psuedo Simple Anyway.
MSDN documents the log chain as: A continuous sequence of log backups is called a log chain. A log chain starts with a full backup of the database. Usually, a new log chain is only started when the database is backed up for the first time or after the recovery model is switched from simple […]
(The Code Project Open License (CPOL))
Database »
Database »
General
|
derekman9707
|
Updated: 10 Sep 2014
Rating:
(No votes for this Article)
|
|
10.
C++11 Move Semantics, rvalue Reference
In this article, we will discuss the move semantics for C++.
(The Mozilla Public License 1.1 (MPL 1.1))
Languages »
C / C++ Language »
Beginners
|
BrainlessLabs (Brainlesslabs.com)
|
Updated: 9 Sep 2014
Rating: 4.00/5
(3 votes)
|
|
11.
FTPoverEmail Beta v1.00
I made a few more edits to FTPoverEmail. I got the SSH functionality working and fixed a couple of bugs for this next version. I’ve started studying for CCDP so my work on it has tailed off a fair amount. Here’s the next version with the bug fixes and SSH functionality. I called this one
(The GNU General Public License (GPLv3))
General Reading »
Uncategorised Technical Blogs »
General
|
Grant Curell
|
Updated: 9 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
12.
Repository pattern, done right
This post aims to explain why the Repository Pattern can still be a great choice.
(The GNU Lesser General Public License (LGPLv3))
Development Lifecycle »
Design and Architecture »
Design Patterns
|
jgauffin
|
Updated: 9 Sep 2014
Rating: 4.81/5
(27 votes)
|
|
13.
Calling a C# Method from C/C++ (native process)
I received a challenge from a friend (lost a bet...) regarding how to load a managed (C#) dll in a native (C++) process by using the Common Language Runtime (CLR). This is confirmed to work with .Net Framework 4.0.The trick is to host the CLR in the process and using it to load the managed dll.// Th
(The Code Project Open License (CPOL))
|
Apex95
|
Updated: 8 Sep 2014
Rating: 5.00/5
(2 votes)
|
|
14.
Ten Software Keywords That Make You Look Smarter
Ten Interesting Software Engineering terms that sound interesting and could make an impact in a technical discussion.
(The Code Project Open License (CPOL))
Languages »
Other .NET Languages »
General
|
Adam Tibi
|
Updated: 8 Sep 2014
Rating: 4.50/5
(5 votes)
|
|
15.
Is Contracting For You?
I have been contracting for around two and a half years now. This isn’t long at all in the grand scheme of things, nevertheless I thought I would share some thoughts on contracting compared with permanent employment, from my slightly limited point of view. If you are considering taking the plunge i
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Ronnie Mukherjee
|
Updated: 7 Sep 2014
Rating: 5.00/5
(2 votes)
|
|
16.
How To Create a Word Document using Spire.Doc
How to create a Word document using Spire.doc
(The Code Project Open License (CPOL))
Desktop Development »
Document / View »
Doc/View Internals
|
Nitesh Luharuka
|
Updated: 6 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
17.
ZeroMQ #7: A Simple Actor Model
Last time we looked at using ZeroMQ to use a “Divide And Conquer” pattern to distribute work to a number of workers and then combine the results again. Since I wrote that last post I have had a bit of think about this series of posts, and realised that nothing I can say here would […]
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Sacha Barber
|
Updated: 5 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
18.
2 out of 3: Exam 70-486
Hello All, so the past week has been particularly busy, but as I sit here tonight, while working through one of the most chaotic weeks since my daughter was born. I wanted to take a second and have the followup to a previous post about the MCSD exams.For those of you who know me, you know that I've
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Kevin Mack
|
Updated: 4 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
19.
Real World with AngularJS and Cordova / PhoneGap
The main Jibebuy web app is a single page web app based on AngularJS. Inspired by reading The Definitive Guide to Angular on Mobile, I decided to spend 1 day porting Jibebuy to Cordova. After just a few hours, I was able to login to Jibebuy on my Android phone! After a couple of days, I had a...
General Reading »
Uncategorised Technical Blogs »
General
|
P.J. Tezza
|
Updated: 4 Sep 2014
Rating:
(No votes for this Article)
|
|
20.
Using Windbg to answer implementation questions for yourself (Can a Delegate Invocation be Inlined?)
Learn how to use the debugger to answer implementation questions for yourself.
(The Code Project Open License (CPOL))
|
benmwatson
|
Updated: 4 Sep 2014
Rating: 5.00/5
(5 votes)
|