网站导航网学 原创论文 网站设计 最新系统 最新研究 原创论文 获取论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计下载 > ASP类作品 > 正文

基于ASP外观专利图像检索平台的设计

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/05/07

网学网为广大网友收集整理了,基于ASP外观专利图像检索平台的设计,希望对大家有所帮助!

QQ交谈客服咨询,网学网竭诚为您服务,本站永久域名:myeducs.cn

第三章 外观专利图像检索平台管理系统的设计

3.1、系统详细功能分析

1.      系统的上层部分,即B/S机构的网站系统。采用WINDOWS+ASP.NET+SQL SERVER来构建。

 

2.      对系统数据库分为SQL数据库和图象特征数据库。

SQL数据库结构采用国际外观专利分类,每一类储存下一类数据库的名称和ID号。在最小类的数据库储存16字段(ID号,申请专利号,分类号,名称,摘要,申请日,公开日,公开号,主分类号,申请人,发明人,地址,国际公布,代理人,代理机构,颁证日,优先权,各图片的字段)。每个专利目录下有关的图片涉及外观专利产品的6个方向的视图。

图象特征数据库,其中存储着外观专利产品的外观设计图提取出的特征参数,以备对比之用。

 

ASP+SQL

ID号,申请专利号,分类号,名称,摘要,申请日,公开日,公开号,主分类号,申请人,发明人,地址,国际公布,代理人,代理机构,颁证日,优先权,各图片的字段

一个是用户登陆

一个是外观专利文本检索页面

后台管理

数据库设计

首页: 相关专利新闻  专利公告  用户登陆

用户后台: 申请专利  专利查询

管理员后台  专利审核  用户管理

.2、数据库设计与实现

数据库名:tu

User   username  password   type

Zuanli  zlhao  fenleihao mincen  zaiyao  senqinri  gongkairi  gonkaihao  zflhao  senqinren  faminren  dizi  guojigb  dailiren  dljigou  banzr  youxq  tupian

申请专利号,分类号,名称,摘要,申请日,公开日,公开号,主分类号,申请人,发明人,地址,国际公布,代理人,代理机构,颁证日,优先权,各图片的字段

第四章 外观专利图像检索平台管理系统的实现

4.1、数据库的连接<%

session.timeout=30

dim conn  

   dim connstr

 on error resume next

connstr="driver={SQL SERVER};server=127.0.0.1;database=yulin;uid=sa;pwd=123456"

     set conn=server.createobject("ADODB.CONNECTION")

     conn.open connstr

 %>

4.2、登录界面设计


 

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>

<!--#include file="Connections/conn.asp" -->

<%

'' *** Validate request to log in to this site.

MM_LoginAction = Request.ServerVariables("URL")

If Request.QueryString <> "" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)

MM_valUsername = CStr(Request.Form("user_name"))

If MM_valUsername <> "" Then

  Dim MM_fldUserAuthorization

  Dim MM_redirectLoginSuccess

  Dim MM_redirectLoginFailed

  Dim MM_loginSQL

  Dim MM_rsUser

  Dim MM_rsUser_cmd

 

  MM_fldUserAuthorization = ""

  MM_redirectLoginSuccess = "user.asp"

  MM_redirectLoginFailed = "index.asp"

 

  MM_loginSQL = "SELECT username, password"

  If MM_fldUserAuthorization <> "" Then MM_loginSQL = MM_loginSQL & "," & MM_fldUserAuthorization

  MM_loginSQL = MM_loginSQL & " FROM dbo.[user] WHERE username = ? AND password = ?"

  Set MM_rsUser_cmd = Server.CreateObject ("ADODB.Command")

  MM_rsUser_cmd.ActiveConnection = MM_conn_STRING

  MM_rsUser_cmd.CommandText = MM_loginSQL

  MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param1", 200, 1, 255, MM_valUsername) '' adVarChar

  MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param2", 200, 1, 255, Request.Form("password")) '' adVarChar

  MM_rsUser_cmd.Prepared = true

  Set MM_rsUser = MM_rsUser_cmd.Execute

 

  If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then

    '' username and password match - this is a valid user

    Session("MM_Username") = MM_valUsername

    If (MM_fldUserAuthorization <> "") Then

      Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)

    Else

      Session("MM_UserAuthorization") = ""

    End If

    if CStr(Request.QueryString("accessdenied")) <> "" And false Then

      MM_redirectLoginSuccess = Request.QueryString("accessdenied")

    End If

    MM_rsUser.Close

    Response.Redirect(MM_redirectLoginSuccess)

  End If

  MM_rsUser.Close

  Response.Redirect(MM_redirectLoginFailed)

End If

%>

<!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">

<!--

.z {  font-size: 12px;

       color: #000000;

}

-->

</style>

</head>

 

<body marginheight="0"  marginwidth="0" topmargin="0" bottommargin="0" >

<!--#include file="top.asp" -->

<table width="760" height="376" border="1" align="center" bordercolor="#c0c0c0" class="z" id="table1">

  <tbody>

    <tr>

      <td width="37%" rowspan="2" align="center" valign="middle"><table id="table2" width="102%">

        <tbody>

          <tr>

            <td height="25" align="center" valign="bottom">用户登陆</td>

          </tr>

          <tr>

            <td width="88%"><form action="<%=MM_LoginAction%>" method="POST" name="form1" id="form1" onsubmit="" webbot-action="--WEBBOT-SELF--">

              <input type="hidden" value="0" name="VTI-GROUP" />

              <table id="table3" height="96" width="89%" border="0">

                <tbody>

                  <tr>

                    <td width="70">用户名:</td>

                    <td><input name="user_name" id="user_name" size="16" /></td>

                  </tr>

                  <tr>

                    <td width="70">密 码:</td>

                    <td><input name="password" type="password" id="password" size="16" /></td>

                  </tr>

                  <tr>

                    <td colspan="2"><p align="center">

                      <input type="submit" value="登陆" name="B1" />

                     

                      <input type="reset" value="取消" name="B2" />

                      <a href="reg.asp" target="_blank"></a></p></td>

                  </tr>

                </tbody>

              </table>

            </form></td>

          </tr>

        </tbody>

      </table></td>

      <td height="25" colspan="2"><p align="left">外观专利图像检索平台介绍</p></td>

    </tr>

    <tr>

      <td width="30%" height="132"><img src=http://www.lw777.net/a/jisuanji/qita/2013/0308/"img/200582823194317821.jpg" alt="1" width="200" height="160" border="0" /></td>

      <td width="33%" height="132"><p>  外观专利图像检索平台利用图像处理和模式识别的方法,运用计算机网络和通信的先进手段,根据外观专利的国际分类标准,对外观设计图像的三要素一一形状、图案、色彩进行逐级分类,确立设计实例间关于&quot;创新性&quot;&quot;新颖性&quot;&quot;相似性&quot;的客观评判规则,为公平、科学、客观的判断设计内容是否相似、是否侵权提供理论依据,是当前普遍采用的基于文字的专利检索系统的重要补充。 </p></td>

 

本站发布的计算机毕业设计均是完整无错的全套作品,包含开题报告+程序+论文+源代码+翻译+答辩稿PPT

本文选自计算机毕业设计http://myeducs.cn
论文文章部分只是部分简介,如需了解更多详情请咨询本站客服!QQ交谈QQ3710167

原创论文

设为首页 | 加入收藏 | 论文首页 |原创论文 |
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师