當前位置:首頁 » 操作系統 » 樓盤庫源碼

樓盤庫源碼

發布時間: 2023-09-10 01:17:13

⑴ 如何獲取自己網站的源碼

首先你要確認網站源碼沒有加密
第二,進入自己 的ftp下載全部源碼,如果是php/mysql還要備分mysql庫
第三,把源碼上傳到空間,重新導入數據,配置庫參數
第四,解析綁定域名

⑵ 「源碼分享」ASP.NET倉庫進銷存ERP管理系統+小程序源碼

開發環境為Visual Studio 2012,資料庫為SQL SERVER2012R2,使用.net 4.5開發。

一、源碼介紹

所有行業的ERP系統/進銷存/倉庫系統,該系統為vs2012 .net+MsSQL版,目前標准版功能簡單、明了、滿足公司正常使用,已有多家企業正常使用,成熟穩定,有需要的可以下載看看。

二、主要功能

1、電商管理(可以和公眾號、小程序對接) 微信訂單、小程序訂單、公眾號訂單

參數設置:輪播圖片設置、分類導航設置、小程序參數設置、公眾號參數設置

2、銷售管理:銷售訂單、銷售出庫

3、采購管理:采購訂單、采購入庫

4、生產管理:BOM分組、BOM清單、生產計劃、生產領料、生產入庫

5、倉庫管理:其他入庫、其他出庫、商品組裝、商品拆卸、庫存檔點、庫存調撥

6、財務管理:銷售收款、其他收款、采購付款、其他付款、收款核銷、付款核銷

7、采購報表

采購訂單跟蹤表 采購明細表 采購匯總表(按商品) 采購匯總表(按供應商)

8、銷售報表

銷售訂單跟蹤表 銷售明細表 銷售匯總表(按商品) 銷售匯總表(按客戶)

9、生產報表

生產計劃跟蹤表 生產領料明細表 生產領料匯總表 生產入庫明細表 生產入庫匯總表

10、倉存報表

商品庫存余額表 商品收發明細表 商品收發匯總表

11、資金報表

現金銀行報表 應付賬款明細表 應收賬款明細表

客戶對賬單 供應商對賬單 其他收支明細

12、基礎資料

供應商管理 商品管理 倉庫管理 賬戶管理 員工管理 企業號通訊錄

工序管理 輔助資料 客戶類別 供應商類別 商品類別 商品品牌

收支類別 計量單位 結算方式 工序類別 高級設置 操作日誌

參數設置 列印設置 Logo印章


3、默認資料庫連接字元串在web.config配置文件中修改

獲取源碼方式:點贊+轉發+關注+私信【進銷存ERP】

******************************************************************************

歡迎點贊+轉發+關注!大家的支持是我分享最大的動力!!!

******************************************************************************

⑶ 有一個庫的源代碼,怎麼用mingw編譯產生成lib

mingw編譯出來的靜態庫後綴名為.a,編譯出來的動態庫的導入庫後綴名為.dll.a,而在windows下後綴名為.lib的庫可能是靜態庫也可能是動態庫的導入庫。

mingw編譯出來的動態庫的導入庫可以直接在vc中直接使用,例如

#pragma comment(lib, "libx264.dll.a")

這樣你就不需要生成一個.lib後綴的動態庫的導入庫了,網上也有如何從.dll生成.lib的方法。

如果鏈接了動態庫的導入庫libpthread.dll.a,你發布的應用程序就要帶上pthread的dll。
使用靜態庫的好處是發布的應用程序組件模塊里不需要帶上相關的dll,如果要使用mingw編譯出來的靜態庫,可以如下:

#pragma comment(lib, "libx264.a")

但是僅僅鏈接這么一個靜態庫是不夠的,你還需要鏈接

libgcc.a

libmingwex.a

⑷ 誰有樓盤銷售管理系統的源代碼

我有樓盤銷售管理系統的源代碼,你要那一種呢?如下有好幾種,詳細可以參考 www.wonod.com 通用客戶關系管理系統 房地產招投標管理系統 裝修裝飾管理系統 房地產拆遷管理系統 房地產材料及供商管理系統 銀行風險管理系統軟體 (IRM) 房地產二次開發平台軟體 房地產決策支持系統 房地產成本控制管理系統 房地產合同管理系統軟體 建築項目管理系統軟體 房地產客戶關系管理系統軟體 房地產人力資源管理系統軟體 製造業ERP軟體 培訓管理軟體 房地產中介管理系統 房地產項目管理系統 售樓管理系統 物業管理系統 地產全行業ERP系統 房地產協同辦公管理系統樓盤銷售管理系統的源代碼,你是用來做開發的還是直接使用的呢?

c語言倉庫管理系統源代碼

學籍管理的程序,你自己改改吧
#include<stdio.h>
#include<windows.h>
#include<conio.h>
int add();
int amend();
int remove();
int show_student();
int show_class();
struct info //定義結構體info,用於存儲學生信息
{
char name[20]; //姓名
char sex[20]; //性別
char idcard[20]; //身份證號碼
char stuid[10]; //學號
char academe[20]; //學院
char specialty[20]; //專業
char classid[20]; //班級
char home[20]; //生源地
}stu[100];
int j=0;
int main(void) //主函數
{
/*登陸界面設計*/
char gongnengxuanzhe;
int flag=1;
system("cls");
printf("\n");
printf("\t\t\t\t 歡迎\n");
printf("\n\n\t尊敬的用戶, 非常感謝您使用本系統 , 您的完美體驗將是我們前進的方向 !\n\n\n");
printf("\t系統功能簡介:\n\n\n");
printf("\t\t①:通過鍵盤輸入某位學生的學生證信息。\n\n");
printf("\t\t②:給定學號,顯示某位學生的學生證信息。\n\n");
printf("\t\t③:給定某個班級的班號,顯示該班所有學生的學生證信息。\n\n");
printf("\t\t④:給定某位學生的學號,修改該學生的學生證信息。\n\n");
printf("\t\t⑤:給定某位學生的學號,刪除該學生的學生證信息。\n\n");
printf("\t\t⑥:按出生日期對全班學生的信息進行排序。\n\n\n");
printf("\t按任意鍵進入系統......");
getch();
do
{
system("cls");
printf("\n\n\n");
printf(" 尊敬的用戶 ,歡迎您使用本系統 !\n");
printf("\n\n\n");
printf(" 1.增加學生信息\n\n");
printf(" 2.修改學生信息\n\n");
printf(" 3.刪除學生信息\n\n");
printf(" 4.顯示單個學生信息\n\n");
printf(" 5.顯示整個班級學生信息\n\n");
printf(" 0.退出系統\n\n\n\n");
printf(" 請選擇您需要使用的功能:");
gongnengxuanzhe=getch();
switch(gongnengxuanzhe)
{
case '1':add();break;
case '2':amend();break;
case '3':remove();break;
case '4':show_student();break;
case '5':show_class();break;
case '0':flag=0;break;
default:
{
printf("\n\n 您的輸入有誤,請仔細閱讀使用說明!");
printf("\n 任意鍵繼續...");
getch();
}

}
}while(flag==1);
system("cls");
printf("\n\n\n\n\n\n\n\n\n\n\t尊敬的用戶,非常感謝您的使用,您對於完美的追求是我們唯一的動力!");
printf("\n\n\t\t\t 按任意鍵退出系統......");
getch();
return 0;
}
int add() //增加學生信息函數
{
char flag='1';
do
{
system("cls");
printf("\n\t姓名:");
scanf("%s",&stu[j].name);
printf("\n\n\t性別:");
scanf("%s",&stu[j].sex);
printf("\n\n\t身份證號:");
scanf("%s",&stu[j].idcard);
printf("\n\n\t學院:");
scanf("%s",&stu[j].academe);
printf("\n\n\t專業:");
scanf("%s",&stu[j].specialty);
printf("\n\n\t班級:");
scanf("%s",&stu[j].classid);
printf("\n\n\t學號:");
scanf("%s",&stu[j].stuid);
printf("\n\n\t生源地:");
scanf("%s",&stu[j].home);
j++;
printf("\n\t繼續增加請鍵入1,返回請鍵入其他任意鍵:");
getchar();
flag=getchar();
}while(flag=='1');
return 0;
}
int amend() //修改學生信息函數
{
if(j==0)
{
system("cls");
printf("\n\n\n\n\n\n\n\n\n\n\t\t 系統無任何可以修改的記錄,請先行輸入數據!");
printf("\n\n\t\t\t 按任意鍵返回......");
getch();
return 0;
}
char a[20];
int z;
int flag=0;
do
{
system("cls");
printf("\n\t需要修改的學生學號:");
scanf("%s",a);
for(z=0;z<j;z++)
{
if(strcmp(stu[z].stuid,a)==0)
{
flag=1;
break; //break退出後,z++不會執行
}
}
if(flag==0)
{
printf("\t對不起,你請求學生信息不存在,請核實後重試!\n");
printf("\t按任意鍵繼續......");
getch();
}
}while(flag==0);
system("cls");
printf("\n\t姓名:");
scanf("%s",&stu[z].name);
printf("\n\n\t性別:");
scanf("%s",&stu[z].sex);
printf("\n\n\t身份證號:");
scanf("%s",&stu[z].idcard);
printf("\n\n\t學院:");
scanf("%s",&stu[z].academe);
printf("\n\n\t專業:");
scanf("%s",&stu[z].specialty);
printf("\n\n\t班級:");
scanf("%s",&stu[z].classid);
printf("\n\n\t學號:");
scanf("%s",&stu[z].stuid);
printf("\n\n\t生源地:");
scanf("%s",&stu[z].home);
return 0;
}
int remove() //刪除學生信息函數
{
if(j==0)
{
system("cls");
printf("\n\n\n\n\n\n\n\n\n\n\t\t 系統無任何可以刪除的記錄,請先行輸入數據!");
printf("\n\n\t\t\t 按任意鍵返回......");
getch();
return 0;
}
char a[20];
int z;
int x;
int flag=0;
do
{
system("cls");
printf("\n\t需要刪除的學生學號:");
scanf("%s",a);
for(z=0;z<j;z++)
{
if(strcmp(stu[z].stuid,a)==0)
{
flag=1;
for(x=z;x<j;x++)
{
strcpy(stu[x].name,stu[x+1].name);
strcpy(stu[x].sex,stu[x+1].sex);
strcpy(stu[x].idcard,stu[x+1].idcard);
strcpy(stu[x].academe,stu[x+1].academe);
strcpy(stu[x].specialty,stu[x+1].specialty);
strcpy(stu[x].classid,stu[x+1].classid);
strcpy(stu[x].stuid,stu[x+1].stuid);
strcpy(stu[x].stuid,stu[x+1].stuid);
}
j--;
printf("\n\t刪除成功!");
printf("\n\t按任意鍵返回上級菜單......");
getch();
}
}
if(flag==0)
{
printf("\t對不起,你請求學生信息不存在,請核實後重試!\n");
printf("\t按任意鍵繼續......");
getch();
}
}while(flag==0);
return 0;
}
int show_student() //單個顯示學生信息函數
{
if(j==0)
{
system("cls");
printf("\n\n\n\n\n\n\n\n\n\n\t\t 系統無任何可以顯示的記錄,請先行輸入數據!");
printf("\n\n\t\t\t 按任意鍵返回......");
getch();
return 0;
}
char a[20];
int z;
int flag=0;
do
{
system("cls");
printf("\n\t需要顯示的學生學號:");
scanf("%s",a);
for(z=0;z<j;z++)
{
if(strcmp(stu[z].stuid,a)==0)
{
flag=1;
system("cls");
printf("\n\t姓名:%s",stu[z].name);
printf("\n\n\t性別:%s",stu[z].sex);
printf("\n\n\t身份證號:%s",stu[z].idcard);
printf("\n\n\t學院:%s",stu[z].academe);
printf("\n\n\t專業:%s",stu[z].specialty);
printf("\n\n\t班級:%s",stu[z].classid);
printf("\n\n\t學號:%s",stu[z].stuid);
printf("\n\n\t生源地:%s",stu[z].home);
printf("\n\n\t按任意鍵返回上級菜單......");
getch();
}
}
if(flag==0)
{
printf("\t對不起,你請求顯示的學生信息不存在,請核實後重試!\n");
printf("\t按任意鍵繼續......");
getch();
}
}while(flag==0);
return 0;
}
int show_class() //顯示整個班級學生信息函數
{
if(j==0)
{
system("cls");
printf("\n\n\n\n\n\n\n\n\n\n\t\t 系統無任何可以顯示的記錄,請先行輸入數據!");
printf("\n\n\t\t\t 按任意鍵返回......");
getch();
return 0;
}
char a[20];
int z;
int x;
int flag=0;
do
{
system("cls");
printf("\n\t需要顯示的班級號碼:");
scanf("%s",a);
for(z=0;z<j;z++)
{
if(strcmp(stu[z].classid,a)==0)
{
flag=1;
system("cls");
printf("\t%s %s 基本信息\n",stu[z].specialty,stu[z].classid);
for(x=0;x<j;x++)
{
if(strcmp(stu[x].classid,a)==0)
{
printf("\n\n\t姓名:%s",stu[z].name);
printf("\n\t性別:%s",stu[z].sex);
printf("\n\t身份證號:%s",stu[z].idcard);
printf("\n\t學院:%s",stu[z].academe);
printf("\n\t專業:%s",stu[z].specialty);
printf("\n\t班級:%s",stu[z].classid);
printf("\n\t學號:%s",stu[z].stuid);
printf("\n\t生源地:%s",stu[z].home);
}
}
printf("\n\n\t按任意鍵返回上級菜單......");
getch();
}
}
if(flag==0)
{
printf("\t對不起,你請求顯示的班級信息不存在,請核實後重試!\n");
printf("\t按任意鍵繼續......");
getch();
}
}while(flag==0);
return 0;
}
有疑問聯系我,[email protected]
請採納。

⑹ 求商品庫存查詢源碼

按你要求做的,直接復制便可
資料庫中欄位
商品代號:文本
商品名稱:文本
商品顏色:文本
商品尺寸:文本
商品價格:數字
商品庫存:是/否、或文本數字看習慣

conn.asp頁面
<%
dim conn,rs,sql,db '聲明變數
set conn=server.createobject("adodb.connection") '創建一個資料庫的實例派生給一個變數
db = server.MapPath("db.mdb")
conn.connectionstring="provider=microsoft.jet.oledb.4.0;data source="&db '連接資料庫
conn.open '打開資料庫

sub close_conn
conn.close
set conn=nothing
end sub
%>

index.asp頁面
<!--#include file="conn.asp"-->
<%
if request.Form("send")="" then '判斷是否有查詢提交
sql = "select * from 商品表" '無查詢者輸出全部
else
if request.Form("key")="" then '判斷關鍵字是為空
response.write "<script>alert('關鍵字不能為空');window.history.back();</script>"
call close_conn
response.End()
end if

if request.Form("mode")="高級查詢" then '判斷查詢方式
dim ys,cc,jg
ys=""
cc=""
jg=""
if request.Form("ys")<>"0" then '判斷是否有選顏色
ys=" and 商品顏色='"&request.Form("ys")&"'" '將查詢表達式中條件賦給 ys
end if

if request.Form("cc")<>"0" then '判斷是否有選尺寸
cc=" and 商品尺寸='"&request.Form("cc")&"'" '將查詢表達式中條件賦給 cc
end if

if request.Form("jg1")<>"" and request.Form("jg2")<>"" then '判斷是否有價格要求
jg=" and (商品價格>="&request.Form("jg1")&" and 商品價格<="&request.Form("jg2")&")"'將查詢表達式中條件賦給 jg
end if

if request.Form("style")="0" then '如果style等於0表示以商品代號查詢 否者以名稱
sql="select * from 商品表 where 商品代號 like '%"&request.Form("key")&"%'"&ys&cc&jg
else
sql="select * from 商品表 where 商品名稱 like '%"&request.Form("key")&"%'"&ys&cc&jg
end if
else
if request.Form("style")="0" then '如果style等於0表示以商品代號查詢 否者以名稱
sql="select * from 商品表 where 商品代號 like '%"&request.Form("key")&"%'"
else
sql="select * from 商品表 where 商品名稱 like '%"&request.Form("key")&"%'"
end if
end if
end if

set rs=server.createobject("adodb.recordset") '創建一個記錄集的實例派生給一個變數
rs.open sql,conn,1,1 '打開記錄集

%>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>查詢商品</title>
<style type="text/css">
td{
text-align:center;
background:#fff;
line-height:25px;
font-size:12px;
}
</style>
</head>

<body>
<table border="0" cellspacing="1" cellpadding="0" bgcolor="#bbbbbb" width="70%" align="center">
<tr>
<td colspan="6">
<form action="index.asp" name="form1" method="post">
<input type="text" name="key" />
<select name="style">
<option value="0" selected="selected">商品代號</option>
<option value="1">商品名稱</option>
</select>
<input type="submit" name="send" value="查詢" />
<input type="button" onclick="window.location.href='search.asp'" value="高級查詢" />
</form>
</td>
</tr>
<tr>
<td width="10%">商品代號</td>
<td width="40%">商品名稱</td>
<td width="10%">商品顏色</td>
<td width="10%">商品尺寸</td>
<td width="10%">商品價格</td>
<td width="20%">庫存</td>
</tr>
<%
if not rs.bof and not rs.eof then
do while not rs.eof
%>
<tr>
<td><%=rs("商品代號")%></td>
<td><%=rs("商品名稱")%></td>
<td><%=rs("商品顏色")%></td>
<td><%=rs("商品尺寸")%></td>
<td><%=rs("商品價格")%></td>
<% if rs("商品庫存") then %>
<td>下架</td>
<%else%>
<td>充足</td>
<%end if%>
</tr>
<%
rs.movenext
loop
else
%>
<tr>
<td colspan="6">沒有關於[<%=request.Form("key")%>]的商品信息</td>
</tr>
<%
end if
rs.close
set rs=nothing

call close_conn
%>
</table>
</body>
</html>
沒有做分頁顯示,如有需要留言

search.asp頁面
<!--#include file="conn.asp"-->
<%
sub clas(names)
sql = "select * from 商品表"
set rs=conn.execute(sql)
do while not rs.eof
response.write "<option value='"&rs(names)&"'>"&rs(names)&"</option>"
rs.movenext
loop
set rs=nothing
end sub
%>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>高級查詢</title>
<style type="text/css">
ul{
list-style-type:noen;
width:70%;
margin:0 auto;
}
li{
height:35px;
}
</style>
</head>

<body>
<form action="index.asp" name="form1" method="post">
<ul>
<li>
<label>關 鍵 字:</label>
<input type="text" name="key" />
</li>
<li>
<label>查找方式:</label>
<select name="style">
<option value="0" selected="selected">商品代號</option>
<option value="1">商品名稱</option>
</select>
</li>
<li>
<label> 顏色:</label>
<select name="ys">
<option value="0" selected="selected">-請選擇-</option>
<!--插入每個商品顏色。如果是規定顏色,就直接鍵入-->
<%call clas("商品顏色")%>
</select>
</li>
<li>
<label> 尺寸:</label>
<select name="cc">
<option value="0" selected="selected">-請選擇-</option>
<!--插入每個商品尺寸。如果是規定尺寸,就直接鍵入-->
<%call clas("商品尺寸")%>
</select>
</li>
<li>
<label>價格範圍:</label>
<input type="text" name="jg1" />至<input type="text" name="jg2" />元
</li>
<li>
<input type="hidden" name="mode" value="高級查詢" />
<input type="submit" name="send" value="查 詢" />
</li>
</ul>
</form>
</body>
</html>
<% call close_conn %>
有不明處留信

保存為code.asp復制下面代碼
有添加、修改、刪除和簡單分頁
<!--#include file="conn.asp"-->
<%
if request.QueryString("types")<>"" then '判斷是否有添加/修改/刪除的請求
if request.QueryString("types")<>"del" then '驗證添加或修改的表單
dim dh,mc,ys,cc,jg,kc
dh=request.Form("dh")
mc=request.Form("mc")
ys=request.Form("ys")
cc=request.Form("cc")
jg=request.Form("jg")
kc=request.Form("kc")

if dh="" or mc="" or ys="" or cc="" or jg="" then
response.write "<script>alert('信息不完整');window.history.back();</script>"
call close_conn
response.End()
end if

if not isnumeric(jg) then '判斷價格欄是否是整數型
response.write "<script>alert('商品價格只能是整數');window.history.back();</script>"
call close_conn
response.End()
end if

if kc="1" then '判斷庫存狀態
kc=true
else
kc=false
end if

end if
select case request.QueryString("types") '判斷操作類型
case "in"
'添加商品
sql="insert into 商品表(商品代號,商品名稱,商品顏色,商品尺寸,商品價格,商品庫存) values('"&dh&"','"&mc&"','"&ys&"','"&cc&"','"&jg&"',"&kc&")"
conn.execute(sql)
response.write "<script>alert('商品添加成功');window.location.href='code.asp';</script>"
call close_conn
response.End()

case "up"
'修改商品
sql="update 商品表 set 商品代號='"&dh&"',商品名稱='"&mc&"',商品顏色='"&ys&"',商品尺寸='"&cc&"',商品價格='"&jg&"',商品庫存="&kc&" where 編號="&request.QueryString("id")
conn.execute(sql)
response.write "<script>alert('商品修改成功');window.location.href='code.asp';</script>"
call close_conn
response.End()

case "del"
'刪除商品
sql="delete from 商品表 where 編號="&request.QueryString("id")
conn.execute(sql)
response.write "<script>alert('商品刪除成功');window.location.href='code.asp';</script>"
call close_conn
response.End()

end select
end if
if request.QueryString("str")="up" then
sql = "select * from 商品表 where 編號="&request.QueryString("id")&" order by 編號 desc"
else
sql = "select * from 商品表 order by 編號 desc"
end if
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
%>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>高級查詢</title>
<style type="text/css">
h2{
text-align:center;
}
ul{
list-style-type:noen;
width:70%;
margin:0 auto;
}
li{
height:35px;
float:left;
width:50%;
}
td{
text-align:center;
background:#fff;
line-height:25px;
font-size:12px;
}
</style>
</head>

<body>
<%
if request.QueryString("str")="up" then
%>
<form action="code.asp?id=<%=rs("編號")%>&types=up" name="form1" method="post">
<h2>添加商品</h2>
<ul>
<li>
<label for="dh">商品代號:</label>
<input type="text" id="dh" name="dh" value="<%=rs("商品代號")%>" />
</li>
<li>
<label for="mc">商品名稱:</label>
<input type="text" id="mc" name="mc" value="<%=rs("商品名稱")%>" />
</li>
<li>
<label for="ys">商品顏色:</label>
<input type="text" id="ys" name="ys" value="<%=rs("商品顏色")%>" />
</li>
<li>
<label for="cc">商品尺寸:</label>
<input type="text" id="cc" name="cc" value="<%=rs("商品尺寸")%>" />
</li>
<li>
<label for="jg">商品價格:</label>
<input type="text" id="jg" name="jg" value="<%=rs("商品價格")%>" />元
</li>
<li>
<label>商品庫存:</label>
<input type="radio" name="kc"<%if not rs("商品庫存") then%> checked="checked"<%end if%> value="0" />充足
<input type="radio" name="kc"<%if rs("商品庫存") then%> checked="checked"<%end if%> value="1" />下架
</li>
<li>
<input type="submit" name="send" value="修改商品" />
<input type="reset" value="重 置">
</li>
</ul>
</form>
<%
else
%>
<form action="code.asp?types=in" name="form1" method="post">
<h2>添加商品</h2>
<ul>
<li>
<label for="dh">商品代號:</label>
<input type="text" id="dh" name="dh" />
</li>
<li>
<label for="mc">商品名稱:</label>
<input type="text" id="mc" name="mc" />
</li>
<li>
<label for="ys">商品顏色:</label>
<input type="text" id="ys" name="ys" />
</li>
<li>
<label for="cc">商品尺寸:</label>
<input type="text" id="cc" name="cc" />
</li>
<li>
<label for="jg">商品價格:</label>
<input type="text" id="jg" name="jg" />元
</li>
<li>
<label>商品庫存:</label>
<input type="radio" name="kc" checked="checked" value="0" />充足
<input type="radio" name="kc" value="1" />下架
</li>
<li>
<input type="submit" name="send" value="添加商品" />
<input type="reset" value="重 置">
</li>
</ul>
</form>
<hr />
<h2>全部商品</h2>
<table border="0" cellspacing="1" cellpadding="0" bgcolor="#bbbbbb" width="80%" align="center">
<tr>
<td width="10%">商品代號</td>
<td width="30%">商品名稱</td>
<td width="10%">商品顏色</td>
<td width="10%">商品尺寸</td>
<td width="10%">商品價格</td>
<td width="10%">庫存</td>
<td width="20%" colspan="2">基本操作</td>
</tr>
<%
if not rs.bof and not rs.eof then
dim i,page
rs.pagesize=10

page=request.QueryString("page")
if page="" or not isnumeric(page) or isnull(page) then
page=1
else
page=cint(page)
end if

rs.absolutepage=page
i=1
do while not rs.eof and i<=rs.pagesize
%>
<tr>
<td><%=rs("商品代號")%></td>
<td><%=rs("商品名稱")%></td>
<td><%=rs("商品顏色")%></td>
<td><%=rs("商品尺寸")%></td>
<td><%=rs("商品價格")%></td>
<% if rs("商品庫存") then %>
<td>下架</td>
<%else%>
<td>充足</td>
<%end if%>
<td><a href="code.asp?id=<%=rs("編號")%>&str=up">修改</a></td>
<td><a href="code.asp?id=<%=rs("編號")%>&types=del">刪除</a></td>
</tr>
<%
rs.movenext
i=i+1
loop
%>
<tr>
<td colspan="8">
<% if page<=1 then %>
<span style="color:#aaaaaa">首頁 上一頁</span>
<% else %>
<a href="code.asp?page=1">首頁</a>
<a href="code.asp?page=<%=page-1%>">上一頁</a>
<%
end if
if page>=rs.pagecount then
%>
<span style="color:#aaaaaa">下一頁 尾頁</span>
<% else %>
<a href="code.asp?page=<%=page+1%>">下一頁</a>
<a href="code.asp?page=<%=rs.pagecount%>">尾頁</a>
<% end if %>
</td>
</tr>
<%
else
%>
<tr>
<td colspan="8">沒有商品信息</td>
</tr>
<%
end if
end if
rs.close
set rs=nothing

call close_conn
%>
</table>
</body>
</html>

⑺ 好用的免費網站源碼網站有哪些

易撲源碼,一個比較好的交流交易平台,裡面很多的作品都是原創的,非常適合學習和交易。

熱點內容
分型包含編程 發布:2025-01-29 14:00:45 瀏覽:690
oracle二進制存儲 發布:2025-01-29 13:44:47 瀏覽:575
浙江常規存儲設備特價 發布:2025-01-29 13:44:43 瀏覽:675
恩格爾演算法 發布:2025-01-29 13:44:41 瀏覽:713
怎麼查看我的車是什麼配置 發布:2025-01-29 13:38:20 瀏覽:78
間片輪轉演算法 發布:2025-01-29 13:38:19 瀏覽:438
PID演算法包 發布:2025-01-29 13:36:52 瀏覽:197
安卓加速器app哪個好 發布:2025-01-29 13:36:49 瀏覽:155
如何有專有的伺服器 發布:2025-01-29 13:36:14 瀏覽:921
android前台activity 發布:2025-01-29 13:31:24 瀏覽:870