分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

winform播放flash

     private void Form1_Load(object sender, EventArgs e)         {             string flashSrc = Environment.CurrentDirectory + "//yanhua.swf";               StringBuilder sb = new StringBuilder();             sb.Append("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">");             sb.Append("<HTML><HEAD></HEAD><BODY style=\"margin:0; padding:0;background:#000;position:relative;\">");             sb.Append("<div style='p...

.NET 暂无评论 阅读(439)

.netcore获取客户端电脑名和IP

public string GetUserName()         {             var username = System.Net.Dns.GetHostEntry(Request.HttpContext.Connection.RemoteIpAddress).HostName;              return username;         }

.NET 暂无评论 阅读(666)

在IIS7上部署你的ASP.NET Core 2项目

在IIS上部署你的ASP.NET Core 2.1项目 注:你的web,必须通过publish到目录,iis再指向目录才行。不能直接用IIS指向VS开发目录。(以前.NET STANDARD一直这样,结果.NETCORE不行。) 1、在控制面板→程序→启用或关闭Windows功能→勾选Internet Information Services以及Web管理工具下的IIS管理控制台 2、IIS 安装AspNetCoreModule 模块 https://www.microsoft.com/net/download/windows 安装完后一定要重启,否则 Http Error 502.5 3、发布 项目右键--发布 4、添加网站 添加一个网站,设置一下名称,并将路径...

.NET 暂无评论 阅读(532)

numl.net 机器学习(一):预测是否迟到

从nuget上搜索numl并安装.我们主要从两个参数(星期几和温度,对于一般的人来说周一容易迟到,天太冷容易迟到)来预测是否迟到, demo代码如下:  class Program     {         static void Main(string[] args)         {             Console.WriteLine("Hello World!");                 WorkTime[] data = WorkTime.GetData();             var d = Descriptor.Create<WorkTime>();             var g = new DecisionTreeGenerator(d);             g.SetHint(false);             var model = Learne...

.NET, 人工智能 暂无评论 阅读(552)

MySQL Connector/Net for .net 4.0 驱动包

MySQL Connector/Net for .net 4.0 驱动包 http://mysql-connector-net-6.8.7.msi   附使用方法: using PW.Common; using PW.Model; using System; using System.Collections; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.Common; using System.Linq; using System.Text;   namespace PW.Db {       /// <summary>     /// 数据访问基础类     /// </summary>     public class Sql     {         protected static string connect...

.NET 暂无评论 阅读(576)

quartz.net demo

TaskJobDemo  public class TimeJob : IJob     {           public void Execute(IJobExecutionContext context)         {             //向c:\Quartz.txt写入当前时间并换行             System.IO.File.AppendAllText(AppDomain.CurrentDomain.BaseDirectory + "Quartz.txt", DateTime.Now + Environment.NewLine);             }     }     class Program     {         static void Main(string[] args)         {                 //1、创建一个调度器             var factory = new StdSchedu...

.NET 暂无评论 阅读(544)

lucene.net demo

  Lucene.net是Lucene的.net移植版本,是一个开源的全文检索引擎开发包,即它不是一个完整的全文检索引擎,而是一个全文检索引擎的架构,提供了完整的查询引擎和索引引擎。 开发人员可以基于Lucene.net实现全文检索的功能。 Lucene.net是Apache软件基金会赞助的开源项目,基于Apache License协议。 Lucene.net并不是一个爬行搜索引擎,也不会自动地索引内容。我们得先将要索引的文档中的文本抽取出来,然后再将其加到Lucene.net索引中。标准的步骤是先初始化一个Analyzer、打开一个IndexWriter、然后再将文档...

.NET 暂无评论 阅读(469)

自己写的一个英汉互翻译的词典,附源码

支持: 1.英汉互翻译 2.历史记录 3.句子翻译 4.CTRL+F 自动呼出   先上图:     关键源代码(很简单):     private void FrmTranslation_Load(object sender, EventArgs e)         {             this.txtWord.Focus();             this.txtWord.Select();         }           void bw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)         {             this.txtResult.Text = Result;         }           void bw_DoWork(object sender, DoWorkEventArgs e)   ...

.NET 暂无评论 阅读(556)

asp.net mvc auth2.0简化版——客户端

 public partial class Login : Page     {         public string client_id = "123456789";         public string getCodeUrl = "http://localhost:8080/?client_id={0}>response_type={1}>redirect_uri={2}>scope={3}>state={4}";         public string getTokenUrl = "http://localhost:8080/Auth/Token?code={0}>grant_type={1}>client_id={2}";         public string getUserUrl = "http://localhost:8080/Auth/UserInfo?token={0}";         protected void Page_Load(object sende...

.NET 暂无评论 阅读(478)

asp.net mvc auth2.0简化版——服务端

 public class AuthController : Controller     {         private static readonly List<string> client_id_list = new List<string>() { "123456789" };         private static readonly List<string> response_type_list = new List<string>() { "code" };         private static readonly List<UserInfo> user_list = new List<UserInfo>();         private static readonly List<UserCode> user_code_list = new List<UserCode>();         private s...

.NET 暂无评论 阅读(521)