Comment puis-je Afficher la date sur la page Aspx?

Je suis en utilisant asp.net webforms pour la première fois et essaie d'afficher la date actuelle sous la forme suivante: le vendredi 13 juillet

<h3>Suggested reading for <% DateTime.Now.ToString(); %></h3>

Cependant, ce n'affiche

Suggested reading for

sur ma page.

Je ne sais pas si cela aide, mais voici quelques entourant code:

<%@ Page Title="Register" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Register.aspx.cs" Inherits="Fake_Coupon_Site.Account.Register" %>

<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
    <hgroup class="title">
        <h1><%: Title %>.</h1>
        <h2>Use the form below to create a new account.</h2>
        <h3>Suggested reading for <% DateTime.Now.ToString(); %></h3>
    </hgroup>

OriginalL'auteur ArmorCode | 2014-02-10