asp.Net 图片上传 学习课件

时间:2019-05-11 21:10:24下载本文作者:会员上传
简介:写写帮文库小编为你整理了多篇相关的《asp.Net 图片上传 学习课件》,但愿对你工作学习有帮助,当然你在写写帮文库还可以找到更多《asp.Net 图片上传 学习课件》。

第一篇:asp.Net 图片上传 学习课件

后台代码

protected void Page_Load(object sender, EventArgs e){

this.Image1.Visible = false;

}

protected void Button1_Click(object sender, EventArgs e){

string fullfilename = this.File1.PostedFile.FileName;

string filename = fullfilename.Substring(fullfilename.LastIndexOf(“”)+ 1);string type = fullfilename.Substring(fullfilename.LastIndexOf(“.”)+ 1);if(type == “jpg” || type == “bmp” || type == “gif”){

this.File1.PostedFile.SaveAs(Server.MapPath(“WebSite11”)+ “” + filename);this.Image1.ImageUrl = “WebSite11/” + filename;this.Image1.Visible = true;

}

else

{

Response.Write(“”);

}

}

第二篇:asp.Net 站内搜索 学习课件

后台代码

protected void Button1_Click(object sender, EventArgs e){

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“connection”].ConnectionString);conn.Open();

string sql = “select * from 市”;if(TextBox1.Text!= ““)

{

sql = ”select * from 市 where 市名称 like '%“ + TextBox1.Text + ”%'”;SqlCommand com = new SqlCommand(sql, conn);SqlDataReader sdr = com.ExecuteReader();GridView1.DataSource = sdr;GridView1.DataBind();

conn.Close();

}

}

第三篇:asp.net 修改密码功能模块 学习课件

修改用户后台密码

protected void Button1_Click(object sender, EventArgs e){ //创建数据库连接对象,并调用web.config文件的连接驱动

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“connection”].ConnectionString);//根据用户名和旧密码查询用户

SqlCommand selectcmd = new SqlCommand(“select * from login where 用户名='” + Session[“用户名”].ToString()+ “'and 密码='” + TextBox1.Text.Trim()+ “'”, conn);try { conn.Open();//打开数据库

SqlDataReader sdr = selectcmd.ExecuteReader();//创建datareader对象,执行查询selectcmd对象

if(sdr.Read())//如果输入的旧密码正确,进行修改密码 { sdr.Close();//关闭数据库

//创建updatecmd,读取用户输入的新密码进行替换原有密码,并且限定用户名是session对象传输进来的用户名

SqlCommand updatecmd = new SqlCommand(“update login set 密码='” + TextBox2.Text.Trim()+ “'where 用户名='” + Session[“用户名”].ToString()+ “'”, conn);int i = updatecmd.ExecuteNonQuery();//执行修改操作

if(i > 0)//如果修改成功 { Response.Write(“”);} else//如果修改失败 { Response.Write(“”);}

} else//如果旧密码错误 { Response.Write(“”);} } catch(System.Exception ee)//进行异常处理 { Response.Write(“”);} finally { conn.Close();//关闭数据库 } }

第四篇:asp.net 页面跳转 学习课件

页面跳转

public partial class Default2 : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

if(!IsPostBack)

{

bind();

}

}

protected void bind()

{

SqlConnection con = new

SqlConnection(ConfigurationManager.ConnectionStrings[“newsConnectionString”].ConnectionString);con.Open();

string sql = “select * from login where 编号='” + Request.QueryString[“编号”] + “'”;SqlDataAdapter sda = new SqlDataAdapter(sql, con);

DataSet ds = new DataSet();

sda.Fill(ds, “login”);

DataRowView drv = ds.Tables[“login”].DefaultView[0];

TextBox1.Text = Convert.ToString(drv.Row[“编号”]);

TextBox2.Text = Convert.ToString(drv.Row[“用户名”]);

TextBox3.Text = Convert.ToString(drv.Row[“密码”]);

TextBox4.Text = Convert.ToString(drv.Row[“年龄”]);

TextBox5.Text = Convert.ToString(drv.Row[“性别”]);

TextBox6.Text = Convert.ToString(drv.Row[“备注”]);

con.Close();

}

}

第五篇:asp.Net 登陆功能模块 学习资料

前台代码

<%@ Page Language=“C#” AutoEventWireup=“true” CodeFile=“login.aspx.cs” Inherits=“login” %>

“http://1/DTD/xhtml1-transitional.dtd”>

无标题页

用户名:

runat=“server”>

ID=“RequiredFieldValidator1” runat=“server”

ControlToValidate=“TextBox1” ErrorMessage=“用户名不能为空

”>

密码:

Width=“150px”>

ID=“RequiredFieldValidator2” runat=“server”

ControlToValidate=“TextBox2” ErrorMessage=“密码不能为空”>

注册

Web.config

登陆按钮后台代码

protected void Button1_Click(object sender, EventArgs e)

{

//创建连接对象

SqlConnection conn = new

SqlConnection(ConfigurationManager.ConnectionStrings[“connection”].ConnectionString);//创建查询,用户名是否存在数据对象

SqlCommand cmd = new SqlCommand(“select * from login where 用户名='” + TextBox1.Text + “'”, conn);

try

{

//如果存在则打开数据库

conn.Open();

SqlDataReader sdr = cmd.ExecuteReader();

//如果用户名输入正确

if(sdr.Read())

{

//判断密码是否正确

if(sdr[“密码”].ToString()==TextBox2.Text)

{

//如果用户名和密码都正确就关闭数据库连接

conn.Close();

//将用户名存放到session中

Session[“用户名”] = TextBox1.Text.Trim();

//并进入后台页面

Response.Redirect(“admin_index.aspx”);

}

else//否则

{

//弹出对话框,提示密码错误

Response.Write(“”);

}

}

else//否则

{

//弹出对话框提示用户名错误

Response.Write(“”);

}

}

catch(System.Exception ee)//异常处理

{

Response.Write(“

language=javascript>alert('”+ee.Message.ToString()+“')”);}

finally

{

conn.Close();//关闭数据库

}

}

下载asp.Net 图片上传 学习课件word格式文档
下载asp.Net 图片上传 学习课件.doc
将本文档下载到自己电脑,方便修改和收藏,请勿使用迅雷等下载。
点此处下载文档

文档为doc格式


声明:本文内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:645879355@qq.com 进行举报,并提供相关证据,工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。

相关范文推荐

    asp.net 删除数据 学习资料

    删除数据protected void Button2_Click(object sender, EventArgs e) { SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["newsConnection......

    asp.net 更新数据 学习资料(大全)

    更新数据protected void Button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["newsConnectionS......

    轴对称图形课件图片(精选5篇)

    【教学内容】人教版义务教育课程标准实验教科书二年级上册P68。【教学目标】1.了解生活中的对称现象,认识轴对称图形的一正些基本特征。能正确识别轴对称图形,会设计制作简单的......

    asp.net 添加新闻功能模块 学习资料

    前台代码 无标题页 新闻标题: 新闻内容: 作者: Web.config 提交新闻后台代码 protected void Button1_Click(object sender, EventArgs e) { Sq......

    《ASP.NET程序设计》教学探讨

    《ASP.NET程序设计》教学探讨 摘 要:在常规教学方法基础上,利用设问解答式的方法对教学内容进行组织,主要采用“提出问题-解答问题”方式组织教学内容,并给出教学设计案例。关键......

    ASP.NET MVC总结

    ASP.NET MVC总结 一、概述 1、单元测试的NUnit, MBUnit, MSTest, XUnit以及其他的框架 2、ASP.NET MVC 应用的默认目录结构有三个顶层目录: Controllers、Models、Views,控制......

    asp.net 检查用户名是否存在 学习资料

    检查用户名是否存在功能模块protected void Button1_Click(object sender, EventArgs e) { usernamevalidate; } private int usernamevalidate { SqlConnection conn =......

    图片学习水电

    转载(13) 分享 评论 复制地址 举报 更多 上一篇 |下一篇:史上最全的熬粥方... 个人日记 | 本文最近访客 ↓↑ 王天天 2012年11月 hello2012年11月 评论 互动 还没有人......