在sql server 建立一個procedure
============================================================
use vbook
go
create procedure insertData(@name nvarchar(8),@sex nvarchar(2),@mail nvarchar(255),@subject text,@suggestion text,@time datetime,@motion nvarchar(255),@public nvarchar(50))
ylw1125 發表在
痞客邦
留言(0)
人氣()
下載路徑:https://drive.google.com/folderview?id=0B8BYVFwwzT1ZVjR1T3dxRjNQdGc&usp=sharing
解壓縮後,執行instnwnd.sql (利用 microsoft sql server management studio開啟)
ylw1125 發表在
痞客邦
留言(0)
人氣()
protected void Page_Load(object sender, EventArgs e)
{
//動態產生左右各一的listbox,並做初始值設定-----------開始
ListBox leftlist = new ListBox();
ListBox rightlist = new ListBox();
ylw1125 發表在
痞客邦
留言(0)
人氣()
protected void Page_Load(object sender, EventArgs e)
{
//動態建立10個文字框;
for (int i = 1; i <= 10; i++)
{
ylw1125 發表在
痞客邦
留言(0)
人氣()
protected void Page_Load(object sender, EventArgs e)
{
Table mytable = new Table();
mytable.GridLines = GridLines.Both;
Page.Controls.Add(mytable);
ylw1125 發表在
痞客邦
留言(0)
人氣()
TextBox1.Style["background-color"] = "#EEEE00";
TextBox1.Style["color"] = "blue";
TextBox1.Style["font-weight"] = "bold";
TextBox1.Style["border-color"] = "green";
TextBox1.Style["font-size"] = "60pt";
ylw1125 發表在
痞客邦
留言(0)
人氣()
FileStream myFileStream;
long fileSize;
myFileStream = new FileStream(Server.MapPath("/ch01/TextFile.txt"), FileMode.Open);
fileSize = myFileStream.Length;
byte[] Buffer = new byte[(int)fileSize];
ylw1125 發表在
痞客邦
留言(0)
人氣()
一般來說我們要將頁面中的table我們會這樣寫
<table align="center">
但是如果要寫在css中的話正常的想法會寫成這樣
table {text-align:center}
但這完全是沒效果的
ylw1125 發表在
痞客邦
留言(0)
人氣()
// 底下這一段IF判別式,是用來防呆,防止一些例外狀況。-- start --
if (Request["p"] == null)
{
p = 1;
}
ylw1125 發表在
痞客邦
留言(0)
人氣()
//Pages 資料的總頁數。搜尋到的所有資料,共需「幾頁」才能全部呈現?
int Pages = ((RecordCount + PageSize) - 1) / (PageSize); //除法,取得「商」。
ylw1125 發表在
痞客邦
留言(0)
人氣()
static bool IsNumeric(object Expression)
{
// Variable to collect the Return value of the TryParse method.
bool isNum;
// Define variable to collect out parameter of the TryParse method. If the conversion fails, the out parameter is zero.
ylw1125 發表在
痞客邦
留言(0)
人氣()
先加入服務參考,再後置程式碼輸入以下內容即可。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
ylw1125 發表在
痞客邦
留言(0)
人氣()