Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
devenliu committed Aug 2, 2023
1 parent 48cb745 commit 401c349
Show file tree
Hide file tree
Showing 24 changed files with 2,146 additions and 83 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ date: 2022-06-14 12:25:16
categories:
- .NET
tags:
- C#
- .NET
- C#
- ASP.NET
---
整理的关于 .NET Framework 和 ASP.NET 的一些面试问答。
Expand Down
8 changes: 4 additions & 4 deletions docs/blog/2022/05/01/zh-CN/welcome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/blog/archives/">
<span class="site-state-item-count">2</span>
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand All @@ -170,7 +170,7 @@
</div>
<div class="site-state-item site-state-tags">
<a href="/blog/tags/">
<span class="site-state-item-count">3</span>
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
Expand Down Expand Up @@ -341,13 +341,13 @@ <h1 class="post-title" itemprop="name headline">
<span class="post-meta-item-icon">
<i class="fa fa-chart-line"></i>
</span>
<span title="站点总字数">7k</span>
<span title="站点总字数">13k</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-coffee"></i>
</span>
<span title="站点阅读时长">7 分钟</span>
<span title="站点阅读时长">12 分钟</span>
</span>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<meta property="og:description" content="整理的关于 .NET Framework 和 ASP.NET 的一些面试问答。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2022-06-14T04:25:16.000Z">
<meta property="article:modified_time" content="2023-07-22T06:43:13.357Z">
<meta property="article:modified_time" content="2023-08-02T15:06:39.561Z">
<meta property="article:author" content="Deven Liu">
<meta property="article:tag" content="C#">
<meta property="article:tag" content=".NET">
Expand Down Expand Up @@ -163,7 +163,7 @@
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/blog/archives/">
<span class="site-state-item-count">2</span>
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
Expand All @@ -174,7 +174,7 @@
</div>
<div class="site-state-item site-state-tags">
<a href="/blog/tags/">
<span class="site-state-item-count">3</span>
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
Expand Down Expand Up @@ -250,7 +250,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-07-22 14:43:13" itemprop="dateModified" datetime="2023-07-22T14:43:13+08:00">2023-07-22</time>
<time title="修改时间:2023-08-02 23:06:39" itemprop="dateModified" datetime="2023-08-02T23:06:39+08:00">2023-08-02</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
Expand Down Expand Up @@ -489,7 +489,7 @@ <h2 id="36-区分函数和存储过程?"><a href="#36-区分函数和存储过
<li>可以从存储过程中调用函数</li>
</ul>
<h2 id="列出-ASP-NET-页面的生命周期事件。"><a href="#列出-ASP-NET-页面的生命周期事件。" class="headerlink" title="列出 ASP.NET 页面的生命周期事件。"></a>列出 ASP.NET 页面的生命周期事件。</h2><p>Page_PreInit<br>Page_Init<br>Page_InitComplete<br>Page_PreLoad<br>Page_Load<br>Page_LoadComplete<br>Page_PreRender<br>Render</p>
<h2 id="38-从-ASP-NET-应用程序发送电子邮件的代码是什么?"><a href="#38-从-ASP-NET-应用程序发送电子邮件的代码是什么?" class="headerlink" title="38) 从 ASP.NET 应用程序发送电子邮件的代码是什么?"></a>38) 从 ASP.NET 应用程序发送电子邮件的代码是什么?</h2><p>Mail msg &#x3D; new Mail();<br>msg.From &#x3D; “<a href="mailto:&#97;&#x62;&#x63;&#64;&#103;&#109;&#97;&#x69;&#x6c;&#x2e;&#x63;&#111;&#109;">&#97;&#x62;&#x63;&#64;&#103;&#109;&#97;&#x69;&#x6c;&#x2e;&#x63;&#111;&#109;</a>“;<br>msg.To &#x3D; “<a href="mailto:&#120;&#x79;&#122;&#x40;&#x67;&#109;&#97;&#105;&#108;&#46;&#99;&#x6f;&#109;">&#120;&#x79;&#122;&#x40;&#x67;&#109;&#97;&#105;&#108;&#46;&#99;&#x6f;&#109;</a>“;<br>msg.Subject &#x3D; “test”;<br>msg.Body &#x3D; “hello”;</p>
<h2 id="38-从-ASP-NET-应用程序发送电子邮件的代码是什么?"><a href="#38-从-ASP-NET-应用程序发送电子邮件的代码是什么?" class="headerlink" title="38) 从 ASP.NET 应用程序发送电子邮件的代码是什么?"></a>38) 从 ASP.NET 应用程序发送电子邮件的代码是什么?</h2><p>Mail msg &#x3D; new Mail();<br>msg.From &#x3D; “<a href="mailto:&#x61;&#98;&#99;&#64;&#x67;&#x6d;&#x61;&#105;&#108;&#46;&#99;&#x6f;&#109;">&#x61;&#98;&#99;&#64;&#x67;&#x6d;&#x61;&#105;&#108;&#46;&#99;&#x6f;&#109;</a>“;<br>msg.To &#x3D; “<a href="mailto:&#120;&#121;&#x7a;&#64;&#103;&#109;&#x61;&#105;&#x6c;&#46;&#x63;&#111;&#x6d;">&#120;&#121;&#x7a;&#64;&#103;&#109;&#x61;&#105;&#x6c;&#46;&#x63;&#111;&#x6d;</a>“;<br>msg.Subject &#x3D; “test”;<br>msg.Body &#x3D; “hello”;</p>
<p>SmtpMail.SmtpServer &#x3D; “localhost”;<br>SmtpMail.Send(msg);</p>
<p>以上代码无法运行,属于伪代码</p>
<h2 id="39-ASP-NET-中-Global-asax-文件有哪些事件处理程序?"><a href="#39-ASP-NET-中-Global-asax-文件有哪些事件处理程序?" class="headerlink" title="39) ASP.NET 中 Global.asax 文件有哪些事件处理程序?"></a>39) ASP.NET 中 Global.asax 文件有哪些事件处理程序?</h2><p>Application_Start<br>Application_End<br>Application_AuthenticatedRequest<br>Application_AuthorizeRequest<br>Application_BeginRequest<br>Application_Disposed<br>Application_EndRequest<br>Application_Error<br>Application_PostRequestHandlerExecute<br>Application_PreRequestHandlerExecute<br>Application_PreSendRequestContent<br>Application_PreSendRequestHeader<br>Application_ReleaseRequestState<br>Application_ResolveRequestCache<br>Application_UpdateRequestCache</p>
Expand Down Expand Up @@ -579,6 +579,9 @@ <h1 id="相关视频"><a href="#相关视频" class="headerlink" title="相关
</a>
</div>
<div class="post-nav-item">
<a href="/blog/2023/08/02/zh-CN/OrchardCore-CustomSettings/" rel="next" title="OrchardCore CustomSettings">
OrchardCore CustomSettings <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
Expand Down Expand Up @@ -614,13 +617,13 @@ <h1 id="相关视频"><a href="#相关视频" class="headerlink" title="相关
<span class="post-meta-item-icon">
<i class="fa fa-chart-line"></i>
</span>
<span title="站点总字数">7k</span>
<span title="站点总字数">13k</span>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="fa fa-coffee"></i>
</span>
<span title="站点阅读时长">7 分钟</span>
<span title="站点阅读时长">12 分钟</span>
</span>
</div>

Expand Down
Loading

0 comments on commit 401c349

Please sign in to comment.