asp.net知识收集
C我要做程序员
比我差的人还没放弃,比我好的人仍在努力,我就更没资格说我无能为力。。做程序员,做自己没做过的项目。2022我考到驾照了,我很想保住我的驾驶证。我终于过了实习期
展开
-
.NET 字符串转数组,数组转字符串
WebForm2.aspx<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication5.WebForm2" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><meta http-equiv原创 2021-09-02 14:06:25 · 1773 阅读 · 0 评论 -
asp.net web窗体,验证码图片
验证码是一张图片。我们需要在前台代码中写一段,src指向一张页面(ValidateImage.aspx)。WebForm1.aspx<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="asp.net验证码图片生成示例.WebForm1" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xht原创 2021-05-26 14:39:04 · 368 阅读 · 0 评论 -
6、Web 窗体的基本控件——DropDownList 列表控件
6、Web 窗体的基本控件——DropDownList 列表控件DropDownList 列表控件前端<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm7.aspx.cs" Inherits="WebApplication2.WebForm7" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><hea原创 2021-04-21 13:32:54 · 483 阅读 · 0 评论 -
5、Web 窗体的基本控件——复选框控件和复选组控件(CheckBox 和 CheckBoxList)
5、Web 窗体的基本控件——复选框控件和复选组控件(CheckBox 和 CheckBoxList)复选框控件和复选组控件(CheckBox 和 CheckBoxList)前端<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm5.aspx.cs" Inherits="WebApplication2.WebForm5" %><!DOCTYPE html><html xmlns="htt原创 2021-04-21 13:28:39 · 983 阅读 · 0 评论 -
4、基本控件——单选控件和单选组控件(RadioButton 和 RadioButtonList)
4、基本控件——单选控件和单选组控件(RadioButton 和 RadioButtonList)单选控件和单选组控件(RadioButton 和 RadioButtonList)前端<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm6.aspx.cs" Inherits="WebApplication2.WebForm6" %><!DOCTYPE html><html xmlns="原创 2021-04-21 13:25:37 · 1110 阅读 · 0 评论 -
3、Web 窗体的基本控件——按钮控件(Button,LinkButton)
3、Web 窗体的基本控件——按钮控件(Button,LinkButton)按钮控件(Button,LinkButton)前端<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="WebApplication2.WebForm4" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"原创 2021-04-21 00:03:46 · 1614 阅读 · 0 评论 -
2、Web 窗体的基本控件——文本框控件(TextBox)
2、Web 窗体的基本控件——文本框控件(TextBox)文本框控件(TextBox)前端<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication2.WebForm2" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runa原创 2021-04-20 23:28:58 · 1964 阅读 · 0 评论 -
1、Web 窗体的基本控件——标签控件(Label)
1、Web 窗体的基本控件——标签控件(Label)标签控件(Label)前端<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebForm1" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="ser原创 2021-04-20 23:20:26 · 1870 阅读 · 0 评论 -
ASP.NET Session 简单用法
一、概述Session用于存储特定的用户会话所需的信息 。二、Session数据存放的位置和形式web.config 配置节点语法:<system.web><sessionState mode="Off|InProc|StateServer|SQLServer"cookieless="true|false"timeout="number of minutes"stateConnectionString="tcpip=server:port"sqlConnectionStr原创 2021-01-09 10:25:47 · 533 阅读 · 0 评论 -
asp.net的Cookie写入与读取
asp.net的Cookie写入与读取1、什么是Cookie?一段文本数据,默认存储在客户端,一种存放在浏览器缓存,一种存放在磁盘,最大可存储4kb。2、怎么写入Cookie和读取Cookie?(1)写入Cookieusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;nam原创 2020-12-18 18:50:07 · 519 阅读 · 1 评论 -
asp.net 简单图片上传
asp.net 简单图片上传01TuPianShang.html<!DOCTYPE html><html><head> <meta charset="utf-8" /> <title></title></head><body> <form action="/ImageUpload.ashx" method="post" enctype="multipart/form-d原创 2020-12-16 02:11:31 · 533 阅读 · 0 评论