Using "SharePoint Online" and just starting out. I don't have a strong programming background, but I'm eager to learn more about customizing this platform. While I've never used .NET before (yes, really!), I'm keen on exploring C# and its applications in the industry. I have complete access to SharePoint Designer and Visual Studio 2008.
1) How can I incorporate basic c# code into a SharePoint web page?
2) What's the process for importing and utilizing c# classes on a SharePoint page?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<%@ Page Language="C#" %>
<%@ Register tagprefix="SharePoint" namespace="Microsoft.SharePoint.WebControls" assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta name="WebPartPageExpansion" content="full" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled 4</title>
<meta http-equiv="X-UA-Compatible" content="IE=10" />
<SharePoint:CssRegistration Name="default" runat="server"/>
</head>
<body>
<form id="form1" runat="server">
</form>
</body>
</html>
This blank .ASPX page was created with "SharePoint Designer". How can I import and showcase a simple "Hello World" c# code on it?
I appreciate your help!