Index page

Welcome page

生成很多不同的小人哦~我是如何实现这么stupid but interesting的程序呢?我用了ASP.NET Core

画小人的话,用了一个很stupid的辅助类, 自己写的,小人脸宽21,然后鼻子占1,剩下的眼睛,鼻子,脸,耳朵,分分看。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using System.Threading.Tasks;
  7.  
  8. namespace game1.Controllers
  9. {
  10. public class DrawingHelper
  11. {
  12. public static string randomEye = @"-|@!~^+'o0O⊙";
  13. public static string randomMouth = @"_x*oO~DVv";
  14. public static string randomHair = randomEye + randomMouth;
  15. public static List<StringBuilder> Draw(int FaceCount)
  16. {
  17. int RowWidth = ;
  18. int hairWidth = ;
  19.  
  20. string leftEar = "(";
  21. string rightEar = ")";
  22. string leftFace = "|";
  23. string nose = "*";
  24.  
  25. var faces = new List<StringBuilder>();
  26.  
  27. for (int t = ; t <= FaceCount; t++)
  28. {
  29. StringBuilder sb = new StringBuilder();
  30. string eye = GetRandomPart(randomEye, );
  31. string mouth = GetRandomPart(randomMouth, );
  32. string hairStyle = GetRandomPart(randomHair, );
  33. DrawHair(RowWidth, hairWidth, hairStyle,sb);
  34. DrawCartoon(leftEar, rightEar, leftFace, eye, nose, mouth,sb);
  35. sb.Append("\n");
  36. faces.Add(sb);
  37. }
  38. return faces;
  39.  
  40. }
  41.  
  42. private static void DrawHair(int RowWidth, int hairWidth, string hairStyle,StringBuilder sb)
  43. {
  44. StringBuilder hair = new StringBuilder();
  45. for (int i = ; i <= hairWidth - ; i++)
  46. {
  47. hair.Append(hairStyle);
  48. }
  49. sb.AppendLine((" " + hair + " ").PadLeft((RowWidth - hairWidth) / + hairWidth, ' '));
  50. sb.AppendLine(("|" + hair + "|").PadLeft((RowWidth - hairWidth) / + hairWidth, ' '));
  51. }
  52. public static string GetRandomPart(string pwdchars, int pwdlen)
  53. {
  54.  
  55. string tmpstr = "";
  56. int iRandNum;
  57. Thread.Sleep();
  58. long tick = DateTime.Now.Ticks;
  59. Random rnd = new Random((int)(tick & 0xffffffffL) | (int)(tick >> ));
  60. for (int i = ; i < pwdlen; i++)
  61. {
  62. iRandNum = rnd.Next(pwdchars.Length);
  63. tmpstr += pwdchars[iRandNum];
  64. }
  65. return tmpstr;
  66. }
  67. private static void DrawCartoon(string leftEar, string rightEar, string leftFace, string eye, string nose, string mouth, StringBuilder sb)
  68. {
  69. //Print left
  70. PrintLeftParts(leftEar, ,sb);
  71. PrintLeftParts(leftFace, ,sb);
  72. PrintLeftParts(eye, ,sb);
  73. PrintLeftParts(nose, ,sb);
  74. //Pring right
  75. PrintLeftParts(eye, , sb);
  76. PrintLeftParts(leftFace, ,sb);
  77. PrintLeftParts(rightEar, ,sb);
  78. //Print down face
  79. sb.AppendLine();
  80. PrintLeftParts(leftFace, ,sb);
  81. PrintLeftParts(mouth, ,sb,'_');
  82. PrintLeftParts(leftFace, , sb,'_');
  83. sb.AppendLine();
  84. sb.AppendLine();
  85.  
  86. }
  87.  
  88. static void PrintLeftParts(string organName, int leftPad, StringBuilder sb,char paddingchar = ' ')
  89. {
  90. for( int i=; i < leftPad; i++)
  91. {
  92. sb.Append(paddingchar);
  93. }
  94. sb.Append(organName);
  95. }
  96. }
  97. }

上一个HelloWorldController,也是整个程序唯一的controller。

  1. using game1.Models;
  2. using Microsoft.ApplicationInsights;
  3. using Microsoft.AspNetCore.Mvc;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text.Encodings.Web;
  8.  
  9. // For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
  10.  
  11. namespace game1.Controllers
  12. {
  13. public class HelloWorldController : Controller
  14. {
  15. TelemetryClient tc = new TelemetryClient();
  16. //
  17. // GET: /HelloWorld/
  18.  
  19. [HttpPost]
  20. public ActionResult Index(string userName, int count)
  21. {
  22. FaceInfo fi = new FaceInfo();
  23. fi.Name = userName;
  24. fi.FaceCount = count;
  25. return RedirectToAction("Welcome",fi);
  26. }
  27. [HttpGet]
  28. public ActionResult Index()
  29. {
  30.  
  31. return View();
  32. }
  33. public ActionResult About()
  34. {
  35.  
  36. return View();
  37. }
  38. //
  39. // GET: /HelloWorld/Welcome/
  40.  
  41. //public string Welcome(string name, int ID = 1)
  42. //{
  43. // tc.TrackEvent("welcome");
  44. // return HtmlEncoder.Default.Encode($"Hello {name}, ID: {ID}");
  45. //}
  46. public ActionResult Welcome(FaceInfo fi)
  47. {
  48. tc.TrackEvent("Generating....");
  49. ViewData["Message"] = "Hello " + fi.Name;
  50. ViewData["FaceCount"] = fi.FaceCount;
  51. List<String> faces = DrawingHelper.Draw(fi.FaceCount).Select(t => t.ToString()).ToList();
  52. return View(faces);
  53. }
  54. }
  55. }

omg~我还有一个model呢~ model好像是实现了在controller里传值。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5.  
  6. namespace game1.Models
  7. {
  8. public class FaceInfo
  9. {
  10. public int FaceCount { get; set; }
  11. public string Name { get; set; }
  12. }
  13. }

Index.cshtml里很简单

俩输入框,一个按钮

  1. @model game1.Models.FaceInfo
  2. @{
  3. ViewData["Title"] = "Index";
  4. }
  5.  
  6. <h2>--------------HELLO--------------</h2>
  7. <hr />
  8. @using (Html.BeginForm())
  9. {
  10. <p>User name:</p>
  11. <input type="text" name="userName" />
  12. <p>Face count:</p>
  13. <input type="text" name="count" />
  14. <p></p>
  15. <input type="submit" value="Try It!"/>
  16. }>
  17.  
  18. <p>Hello to many little faces!</p>

Welcome.cshtml似乎更简单!

  1. @{
  2. ViewData["Title"] = "Welcome";
  3. }
  4. @model List<String>
  5. <h2>Welcome to Winnie's app</h2>
  6.  
  7. <p>This is my first web app.</p>
  8.  
  9. @foreach(var element in Model)
  10. {
  11. <li>@ViewData["Message"]</li>
  12. <pre>@Html.DisplayFor(m=>element)</pre>
  13. }

嗯虽然简单,但是宝宝也忙乎了一天~

【C# 基础应用】我的第一个App,不容易——随机生成小人网站,asp.net core的更多相关文章

  1. 微软Azure配置中心 App Configuration (一):轻松集成到Asp.Net Core

    写在前面 在日常开发中,我这边比较熟悉的配置中心有,携程Apollo,阿里Nacos(配置中心,服务治理一体) 之前文章: Asp.Net Core与携程阿波罗(Apollo)的第一次亲密接触 总体来 ...

  2. 创业成本?亲身经历告诉你做一个app要多少钱

    导语:作为一名苦逼的移动互联网创业者,被外行的朋友们问及最多的问题是“做一个网站需要多少钱?”或者“做一个APP需要多少钱?” 作为一名苦逼的移动互联网创业者,被外行的朋友们问及最多的问题是“做一个网 ...

  3. Windows + IIS 环境部署Asp.Net Core App

    环境:Windows Server 2012, IIS 8, Asp.Net Core 1.1. 不少人第一次在IIS中部署Asp.Net Core App的人都会遇到问题,会发现原来的部署方式无法运 ...

  4. ASP.NET Core 基本项目目录结构 - ASP.NET Core 基础教程 - 简单教程,简单编程

    原文:ASP.NET Core 基本项目目录结构 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core 基本项目目录结构 上一章节中我们成功创建了一个名为 Hell ...

  5. 【ASP.NET Core学习】基础

    新建项目时,程序入口调用CreateDefaultBuilder(args),下面是源代码 public static IHostBuilder CreateDefaultBuilder(string ...

  6. ASP.NET Core中app.UseDeveloperExceptionPage和app.UseExceptionHandler方法有什么用

    在新建一个ASP.NET Core项目后,在项目Startup类的Configure方法中默认会添加两个方法的调用,app.UseDeveloperExceptionPage和app.UseExcep ...

  7. 学习ASP.NET Core Blazor编程系列二——第一个Blazor应用程序(下)

    学习ASP.NET Core Blazor编程系列一--综述 学习ASP.NET Core Blazor编程系列二--第一个Blazor应用程序(上) 学习ASP.NET Core Blazor编程系 ...

  8. 学习ASP.NET Core Blazor编程系列二——第一个Blazor应用程序(完)

    学习ASP.NET Core Blazor编程系列一--综述 学习ASP.NET Core Blazor编程系列二--第一个Blazor应用程序(上) 学习ASP.NET Core Blazor编程系 ...

  9. 如何一秒钟从头构建一个 ASP.NET Core 中间件

    前言 其实地上本没有路,走的人多了,也便成了路. -- 鲁迅 就像上面鲁迅说的那样,其实在我们开发中间件的过程中,微软并没有制定一些策略或者文档来约束你如何编写一个中间件程序, 但是其中却存在者一些最 ...

随机推荐

  1. 【MongoDB初识】-安装篇

    1.首先MongoDB官网:http://www.mongodb.org,下载mongoDB 2.解压安装 自己安装在E:\mongdb 3.提示otfix KB2731284 or later up ...

  2. iOS 消息推送(APNs) 傻瓜式教程

    也可以去我的简书页面查看这篇文章 首先: 1.做iOS消息推送需要真机测试 2.做iOS消息推送需要有付费的开发者账号 是否继续看帖? 先学习一下相关的知识吧! 因为中途可能会遇到一些问题,这篇文章或 ...

  3. CentOS6.7安装Python3.4

    1.下载Python3.4安装包 wget https://www.python.org/ftp/python/3.4.4/Python-3.4.4.tgz 2.解压.编译.安装 .tgz cd Py ...

  4. WebForms 开发基础

    webform开发方式 xml - 可扩展的标记语言 HTML - 超文本标记语言 运行: 点击启动按钮 - 好处:可以卡断点 弊端:启动特别慢 在html上右键,在浏览器中查看 - 好处:启动特别快 ...

  5. 01 LabVIEW的类中各个Scope的范围

    范例地址: D:\Program Files (x86)\National Instruments\LabVIEW 2015\examples\Object-Oriented Programming\ ...

  6. navicat使用

      navicat我觉得做程序的基本上都会用,它方便,快捷,直观等,优点很多,这也是我写这篇文章的原因.以前我基本上都是用phpmyadmin,也挺好用,不过也有不少缺点,比如数据库备份文件太大,根本 ...

  7. c#向数据库插入较大数据(SqlBulkCopy)

    因为要向数据库添加一些数据,数据量较大 1.使用sql语句批量提交速度较慢 2.用事物批量提交,速度一般 3.用SqlBulkCopy方法写入数据,速度较快 /// <summary> / ...

  8. jquery插件学习之元素顶部悬浮

    jquery插件的学习: HTML部分及应用 <!DOCTYPE html> <html> <head> <meta charset="utf-8& ...

  9. ubuntu快捷复制粘贴

    今天使用putty,纠结复制粘贴的时候,才发现 原来只要选中文本后,就可以中键粘贴 整个桌面环境可用,新技能啊以前居然不知道

  10. ehcache memcache redis 三大缓存

    最近项目组有用到这三个缓存,去各自的官方看了下,觉得还真的各有千秋!今天特意归纳下各个缓存的优缺点,仅供参考!  Ehcache 在Java项目广泛的使用.它是一个开源的.设计于提高在数据从RDBMS ...