• 大小: 0.06M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: POS  POST  

资源简介

POST模拟登录源码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Text.Regularexpressions;
//|5|1|a|s|p|x
namespace LoginDemo
{
    public class Cookies
    {
        public Dictionary dicCookie = new Dictionary();
        public Cookies()
        {

        }
        public void SetCookie(string set)
        {
            if (string.IsNullOrEmpty(set))
            {
                return;
            }
            Regex r = new Regex(@“=[A-Za-z]{15} “);
            string[] strArray = r.Replace(set “=“).Split(‘‘);
            r = new Regex(@“([\s\S]*?)=([\s\S]*?); “);
            foreach (string str in strArray)
            {
                string temp = str + “ “;
                Matc

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1891  2013-03-18 09:04  51Aspx源码必读.txt
     文件        2940  2013-03-18 09:01  Cookies.cs
     文件        4695  2013-03-14 23:01  Core.cs
     文件        5758  2013-03-14 22:18  Http.cs
     文件        3513  2013-03-14 23:01  LoginDemo.csproj
     文件         907  2013-03-18 09:02  LoginDemo.sln
     文件       24576  2013-03-18 09:02  LoginDemo.suo
     文件        6928  2013-03-14 22:03  MainForm.Designer.cs
     文件        3312  2013-03-18 09:02  MainForm.cs
     文件        5814  2013-03-14 22:03  MainForm.resx
     文件         473  2013-03-14 15:57  Program.cs
     目录           0  2013-03-18 08:51  Properties\
     文件        1350  2013-03-14 15:56  Properties\AssemblyInfo.cs
     文件        2868  2013-03-14 15:56  Properties\Resources.Designer.cs
     文件        5612  2013-03-14 15:56  Properties\Resources.resx
     文件        1094  2013-03-14 15:56  Properties\Settings.Designer.cs
     文件         249  2013-03-14 15:56  Properties\Settings.settings
     目录           0  2013-03-18 08:52  bin\
     目录           0  2013-03-18 08:52  bin\Debug\
     文件       18432  2013-03-18 08:52  bin\Debug\LoginDemo.exe
     文件       38400  2013-03-18 08:52  bin\Debug\LoginDemo.pdb
     文件       11592  2013-03-18 09:01  bin\Debug\LoginDemo.vshost.exe
     文件         490  2012-07-26 20:00  bin\Debug\LoginDemo.vshost.exe.manifest
     文件        4945  2007-07-18 09:38  from.gif
     目录           0  2013-03-18 08:52  obj\
     目录           0  2013-03-18 08:52  obj\Debug\
     文件         180  2013-03-18 08:52  obj\Debug\LoginDemo.MainForm.resources
     文件         180  2013-03-18 08:52  obj\Debug\LoginDemo.Properties.Resources.resources
     文件        1133  2013-03-18 09:01  obj\Debug\LoginDemo.csproj.FileListAbsolute.txt
     文件         850  2013-03-18 08:52  obj\Debug\LoginDemo.csproj.GenerateResource.Cache
     文件       18432  2013-03-18 08:52  obj\Debug\LoginDemo.exe
............此处省略3个文件信息

评论

共有 条评论