月曜日の仕事張孝祖11.5日
16554 ワード
今日は関数をさらに修正し、エラー注意、積分加減などの機能を提供し、インタフェースはさらに設計する必要がありますが、機能はすでに実現されています.
明日は個人を探して各種の違反のアップロードの情況をテストして、ずっと安定して運行することができるかどうかを見ます.どうせ自分でテストしても安定してアップロードできます.
コードは次のとおりです.
明日は個人を探して各種の違反のアップロードの情況をテストして、ずっと安定して運行することができるかどうかを見ます.どうせ自分でテストしても安定してアップロードできます.
コードは次のとおりです.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
public partial class upload : System.Web.UI.Page
{
public string title = null; //
public string keyWord = null; //
public string author = null; //
public string filetype = null; //
protected void Page_Load(object sender, EventArgs e)
{
}//
protected void OK_Click(object sender, EventArgs e) //
{
title = Title.Text;
keyWord = Keyword.Text;
author = Author.Text;
filetype = Type.Text;
int temp=0;
temp = (int)Application["point"];
if ((title=="")||(filetype==""))
{
Response.Write("<script>alert(' ');</script>");
}
else
{
if (fu.HasFile == true)
{
fu.SaveAs(MapPath(fu.FileName));
temp++;
Application["point"] = temp.ToString();
Response.Redirect("UpLoadContent.aspx");
Response.Write("<script>alert(' , 1');</script>");
}
else
{
Response.Write("<script>alert(' ');</script>");
}
}
}
}
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="upload.aspx.cs" Inherits="upload" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<style type="text/css">
.auto-style1
{
text-align: center;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="auto-style1">
<asp:Label ID="Top" runat="server" Text=" ( )"></asp:Label>
<asp:Label ID="Author1" runat="server" Text=" "></asp:Label>
<asp:Label ID="Type1" runat="server" Text=" "></asp:Label>
<asp:Label ID="Keyword1" runat="server" Text=" "></asp:Label>
<br />
<asp:TextBox ID="Title" runat="server" Width="83px"></asp:TextBox>
<asp:TextBox ID="Author" runat="server" Width="98px"></asp:TextBox>
<asp:TextBox ID="Type" runat="server" Width="102px"></asp:TextBox>
<asp:TextBox ID="Keyword" runat="server" Width="102px"></asp:TextBox>
<br />
<br />
<asp:FileUpload ID="fu" runat="server"/><br/>
<asp:Button ID="btnSure" runat="server" OnClick="OK_Click" Text=" ">
</asp:Button>
</div>
</form>
<p>
</p>
</body>
</html>