This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE [r_file]( | |
| [ID] [int] IDENTITY(1,1) NOT NULL, | |
| [title] [nvarchar](50) NOT NULL, | |
| [filename] [nvarchar](50) NOT NULL, | |
| [type] [nvarchar](100) NOT NULL, | |
| [orders] [int] NOT NULL, | |
| [bin] [varbinary](max) NOT NULL, | |
| [insert_datetime] [datetime] NOT NULL, | |
| [update_datetime] [datetime] NULL, | |
| CONSTRAINT [PK_r_file] PRIMARY KEY CLUSTERED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Student.aspx.vb" Inherits="FileUpload.Student" %> | |
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head runat="server"> | |
| <script type="text/javascript"> | |
| function OnClientValidation() { | |
| document.getElementById('Message').style.display = 'none'; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr" xmlns:og="http://ogp.me/ns#" xmlns:mixi="http://mixi-platform.com/ns#"> | |
| <head> | |
| <meta http-equiv="Content-Language" content="ja" /> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <script type="text/javascript" src="jquery-1.11.3.min.js"></script> | |
| <script type="text/javascript" src="jquery.highlight-5.js"></script> | |
| <style type="text/css"> | |
| .highlight { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title></title> | |
| <script src="jquery-1.11.3.min.js"></script> | |
| <script src="jquery-ui.min.js"></script> | |
| <script type="text/javascript" src="jquery-ui-i18n.min.js"></script> | |
| <link rel="stylesheet" href="jquery-ui.min.css" /> | |
| <script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| function sumall() { | |
| document.fm.t4.value = perseInt(document.fm.t1.value) + perseInt(document.fm.t2.value) + perseInt(document.fm.t3.value); | |
| } | |
| //$(function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm1.aspx.vb" Inherits="WarekiSample.WebForm1" %> | |
| <!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> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link href="jquery-ui.min.css" rel="stylesheet"> | |
| <script src="jquery-1.11.3.min.js"></script> | |
| <script src="jquery-ui.min.js"></script> | |
| <script src="jquery.ui.datepicker-ja.js"></script> | |
| <script> | |
| $(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="Shift-JIS"> | |
| <title>タイトル</title> | |
| <script type="text/javascript" src="jquery-1.11.3.min.js"></script> | |
| <style type="text/css"> |
OlderNewer