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.
ASP.Net Website Project – External Assembly References
Introduction Today I just thought of removing the Assembly Reference errors which I get whenever I take the latest of an ASP.Net Website Project (Not ASP.Net Web Application Project) along with many class library projects. As we all know that Website project does not have any project file which ca
(The Code Project Open License (CPOL))
Web Development »
ASP »
Code Project scripts
|
Mohit1110
|
Updated: 27 Sep 2014
Rating:
(No votes for this Article)
|
|
2.
Pillars of Application Security
Pillars of application security
(The Code Project Open License (CPOL))
Web Development »
Web Security »
Security
|
CdnSecurityEngineer
|
Updated: 27 Sep 2014
Rating:
(No votes for this Article)
|
|
3.
DOCTYPE (Document Type) Explored
Introduction Recently when I started studying HTML5, first question came to my mind was that how does a browser come to know, if written HTML is compatible with HTML v4.1 or HTML v5. In order to find out the reply of the same query, I started exploring and here I would like to share my […]
(The Code Project Open License (CPOL))
Desktop Development »
Document / View »
General
|
Mohit1110
|
Updated: 26 Sep 2014
Rating:
(No votes for this Article)
|
|
4.
Using SSIS To Get Data From a Web Service
The sample package outlined can be downloaded here. SSIS has a web service control flow task that allows you to call a web service and store the results. This can be very useful if you need to call data from a web service that will be stored in an OLTP or OLAP database. The configuration […]
(The Code Project Open License (CPOL))
Web Development »
Web Services »
ATL Web Services
|
derekman9707
|
Updated: 26 Sep 2014
Rating:
(No votes for this Article)
|
|
5.
Using auto for declaring variables of move-only types.
This post demonstrates how to use auto with move-only types. In Declaration and initialization with auto, we showed that using auto for local declarations makes the code safer and more readable. It avoids writing declarations where we easily loose sight of the variable name. Like the fir
(The Code Project Open License (CPOL))
Languages »
C++ / CLI »
General
|
Gabor Fekete
|
Updated: 26 Sep 2014
Rating:
(No votes for this Article)
|
|
6.
Connecting the dots with jQuery, JSONP, and WebAPI
I did some pair-programming with my friend Julie Lerman where we looked into what we thought was a simple jQuery AJAX request problem. What we found was something a bit more interesting in the connection between jQuery and ASP.NET WebAPI.
(The Microsoft Public License (Ms-PL))
Web Development »
Client side scripting »
General
|
Jeffrey T. Fritz
|
Updated: 26 Sep 2014
Rating:
(No votes for this Article)
|
|
7.
Some of the Many Quirks of Oracle
Some of the many quirks of Oracle
(The Code Project Open License (CPOL))
Database »
Database »
Oracle
|
Adam Zuckerman
|
Updated: 26 Sep 2014
Rating: 3.67/5
(2 votes)
|
|
8.
All About SSIS Variables Part 3 Variable Assignment
The sample package outlined in this post can be downloaded here. While my last post discussed SSIS object variables this post will look at variable value assignment. There are several ways that a variable can be assigned a value within an SSIS package: Default Value Assignment Once a variable is
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
derekman9707
|
Updated: 26 Sep 2014
Rating:
(No votes for this Article)
|
|
9.
ASP.NET Identity 2.0: Introduction to Working with Identity 2.0 and Web API 2.2
In recent posts, I've covered a lot of ground using ASP.NET Identity 2.0 in the context of an MVC application. Since it's RTM in March of this year, Identity 2.0 has offered a substantial expansion of the Authentication/Authorization . toolset available to MVC applications. Similarly, Identity 2.0
(The Code Project Open License (CPOL))
Web Development »
Web Security »
Security
|
John Atten
|
Updated: 26 Sep 2014
Rating:
(No votes for this Article)
|
|
10.
[OoB] Sonar with Arduino, C#, JavaScript and HTML5 (Part 2)
Part 1 described the general idea behind Sonar project, hardware components used and Arduino sketch... This second post in "Out of Boredom" series is about C# and JavaScript programs that make it possible to display ultrasonic range sensor data in web browsers. The role of .NET application is to rec
(The Code Project Open License (CPOL))
Internet of Things »
Arduino »
General
|
morzel
|
Updated: 25 Sep 2014
Rating:
(No votes for this Article)
|
|
11.
Gaming : The Best Free Tools To start your game Development
“Who needs sports stardom when you can shoot fireballs from your fingertips?” ― Ethan Gilsdorf MonoGame monogame.net MonoGame is a C# framework that allows developers to target desktop, handhelds, mobile,and consoles using a single codebase. The framework is written on top of Mono, an open source im
(The Code Project Open License (CPOL))
General Programming »
Game Development »
XNA
|
Vidyasagar MSC
|
Updated: 25 Sep 2014
Rating:
(No votes for this Article)
|
|
12.
Processing SQL Server FILESTREAM Data, Part 3 - Creating Tables
Utilizing SQL Server FILESTREAM capabilities from .Net.
(The Code Project Open License (CPOL))
Database »
Database »
General
|
Bob McGowan
|
Updated: 24 Sep 2014
Rating:
(No votes for this Article)
|
|
13.
Airspace problem WPF
“Airspace” is a conceptual way of thinking about how the two halves of an interoperation application share the rendering areas within a common top-level window. This topic explains how the “airspace” concept might influence the presentation design as well as the input conside
(The Code Project Open License (CPOL))
Platforms, Frameworks & Libraries »
Windows Communication Foundation »
General
|
Aditya Swami
|
Updated: 24 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
14.
Façade Design Pattern
Façade design pattern
(The Code Project Open License (CPOL))
Graphics / Design »
Windows 8 Design »
Design
|
Aditya Swami
|
Updated: 24 Sep 2014
Rating:
(No votes for this Article)
|
|
15.
Proxy Design Pattern
Proxy design pattern
(The Code Project Open License (CPOL))
Graphics / Design »
Windows 8 Design »
Design
|
Aditya Swami
|
Updated: 24 Sep 2014
Rating:
(No votes for this Article)
|
|
16.
All About SSIS Variables Part 2 Objects
My last post looked at a simplistic example of using an SSIS variable in a row count transformation and then using the variable in a precedence constraint expression to direct the flow of the package. This post will focus on the unique object variable data type. The object data type is the ultima
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
derekman9707
|
Updated: 24 Sep 2014
Rating:
(No votes for this Article)
|
|
17.
All About SSIS Variables Part 1
Variables have been available in SSIS since first introduced in 2005. So what exactly are they for and what can you do with variables? Glad you asked!! Variables can be used for a number of different purposes: 1. Define the path of a package 2. Hold system information, such as error information 3. P
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
derekman9707
|
Updated: 23 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
18.
Be Sure With Azure .NET – Azure Table Storage (Part 1)
This is the second article in an on going series on Microsoft Azure features and services. If your just joining us, you might want to take a look at the previous Microsoft Azure Blob Storage article that covers how to get started with an Azure Storage account, development tools, using the Azure Sto
(The Code Project Open License (CPOL))
Third Party Products »
Reviews on Third Party Products and Tools »
General
|
Max R McCarty
|
Updated: 23 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
19.
Application Security: Agreement
Building An Application Security Program: Business Agreement Starting An Application Security Program Getting Business to agree to start an application security program is one of the hardest obstacles you will face In light of the ever ending stream of large…Read more ›The post Applicati
(The Code Project Open License (CPOL))
Third Party Products »
Reviews on Third Party Products and Tools »
General
|
CdnSecurityEngineer
|
Updated: 23 Sep 2014
Rating: 5.00/5
(3 votes)
|
|
20.
Front-end development with Visual Studio
The emergence of single page applications introduces a new need for web developers: a front end build process. Javascript MV* frameworks now allow web developers to build complex and sophisticated applications with many files (js, css, sass/less, html …). We’re very far from those 3 lines of JavaScr
(The Code Project Open License (CPOL))
Development Lifecycle »
Design and Architecture »
Methodologies
|
Cybermaxs
|
Updated: 23 Sep 2014
Rating: 5.00/5
(4 votes)
|