子晴的编程日记

记录我的编程日记

导航

2019年1月7日 #

SVN服务器搭建和使用

摘要: SVN服务器下载地址:https://www.visualsvn.com/server/download/ 客户端下载地址:https://tortoisesvn.net/downloads.html 创建用户: 创建组: 设置权限: 阅读全文

posted @ 2019-01-07 17:29 子晴的编程日记 阅读(107) 评论(0) 推荐(0) 编辑

动态绑定复选框

摘要: 动态绑定复选框,选中某个复选框获取数据ID值 前台代码: <asp:Repeater ID="Repeater1" runat="server"><HeaderTemplate><table border="1" style="width:1000px;text-align:center;borde 阅读全文

posted @ 2019-01-07 17:23 子晴的编程日记 阅读(405) 评论(0) 推荐(0) 编辑

c#发送邮件,可发送多个附件

摘要: 1:创建SendMail类 2:调用方法 SendMail send = new SendMail("123456@qq.com", "123456@163.com", "邮件内容测试", "邮件标题测试", "mail20181224");send.Attachments(@"D:\\工作\\ab 阅读全文

posted @ 2019-01-07 17:23 子晴的编程日记 阅读(2721) 评论(1) 推荐(3) 编辑

C#列表页面

摘要: 前台页面: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="Page_Index" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1 阅读全文

posted @ 2019-01-07 17:21 子晴的编程日记 阅读(97) 评论(0) 推荐(0) 编辑

C#列表页面后台代码

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data 阅读全文

posted @ 2019-01-07 17:20 子晴的编程日记 阅读(868) 评论(0) 推荐(0) 编辑

c#连接oracle数据库底层方法

摘要: using Oracle.ManagedDataAccess.Client;using System;using System.Collections;using System.Collections.Generic;using System.Data;using System.Data.OleDb 阅读全文

posted @ 2019-01-07 17:19 子晴的编程日记 阅读(1046) 评论(0) 推荐(0) 编辑