Skip to content

Instantly share code, notes, and snippets.

View reverentgeek's full-sized avatar
💭
🥓Developer 🥑

David Neal reverentgeek

💭
🥓Developer 🥑
View GitHub Profile
@reverentgeek
reverentgeek / Intro to Node Talk.md
Last active August 29, 2015 14:04
Intro to Node.js for .NET Developers

Intro to Node.js for .NET Developers

Node.js is a compelling platform that is quickly spreading from startups to the enterprise. As a .NET developer, why should you learn Node.js and where do you start? You will come away from this talk with the evidence and tools you need to be a productive Node.js developer. Yes, you can build Node.js applications in Visual Studio! We'll walk through creating, debugging, and deploying a Node.js project to Microsoft Azure using the Node.js Tools for Visual Studio. We'll also look at popular frameworks and modules, and other learning resources.

Alternative

Node.js is a compelling platform that is quickly spreading from startups to the enterprise. As a .NET developer, why should you learn Node.js and where do you start? Yes, you can build Node.js applications in Visual Studio! You will walk away from this talk with the evidence and tools you need to be a productive Node.js developer.

About David Neal

@reverentgeek
reverentgeek / MailTest.aspx
Created April 2, 2012 14:29
Test Mail with C#
<%@ Page Language="C#" %>
<%@ Import namespace="System.Net.Mail" %>
<script runat="server">
protected void SubmitClick(object sender, EventArgs e)
{
MailMessage mail = new MailMessage();
mail.From = new MailAddress(txtFrom.Text);
mail.To.Add(txtTo.Text);
mail.Subject = txtSubject.Text;
mail.Body = txtBody.Text;