導航:首頁 > 編程知識 > 個人信息注冊怎麼編程

個人信息注冊怎麼編程

發布時間:2023-07-01 02:15:05

java實現簡單個人信息錄入

import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
import java.awt.*;
import java.io.*;
import java.util.*;
import javax.swing.JLabel;
public class xueshengxitong5xin implements ActionListener,ListSelectionListener,ItemListener
{
JFrame f;
JList list;
JLabel lab0,lab1,lab2,lab3,lab4,lab5,lab6,lab7,lab8,lab9,lab10,lab11;
JTextField tf1,tf2,tf3,tf4,tf5,tf6;
JButton bt1,bt2,bt3,bt4;
JRadioButton r,r1,r2;
ButtonGroup bg=new ButtonGroup();
String font1="男";
String font2="女";
String str;
int c=0;
boolean flag1,flag2;

String jiguan[]={"省份 ",
"北京","上海","天津","山東","山西",
"廣東","廣西","陝西","安徽","新疆",
"西藏","南京","浙江","江蘇","黑龍江",
"吉林","遼寧","貴州","福建","重慶",
"寧夏","河北","河南","青海","江西",
"湖南","湖北","海南","四川","甘肅",
"雲南","台灣","香港","澳門"};
JComboBox cbx=new JComboBox();//創建下拉式列表對象
DefaultListModel listModel;

xueshengxitong5xin()
{
f = new JFrame("學生信息錄入系統");
f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
f.setSize(600,500);
f.setResizable(false);
createInterface();
f.setVisible(true);

JTextField ta=new JTextField("文本域");

/* try
{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel") ;
//設置窗口的外觀,使得窗口的風格和windows的一樣!!
}
catch(Exception e){}*/

}
void createInterface()
{
Container con = f.getContentPane();
listModel = new DefaultListModel();
list = new JList(listModel);

list.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
list.addListSelectionListener(this);
jscrollPane jsp = new JScrollPane(list);

JPanel jp4 = new JPanel();
jp4.setLayout(new FlowLayout());

JPanel jp3 = new JPanel();
jp3.setLayout(new FlowLayout());
lab0 = new JLabel("學生信息錄入系統");
lab0.setForeground(Color.blue);
Font ft=new Font("楷體",Font.BOLD,20);
lab0.setFont(ft);
jp3.add(lab0);

JPanel jp = new JPanel();
jp.setLayout(new FlowLayout());

lab1 = new JLabel("學號");
tf1 = new JTextField(22);
lab2 = new JLabel("姓名");
tf2 = new JTextField(22);
lab3 = new JLabel("性別");
lab7 = new JLabel(" ");
r1=new JRadioButton("男",true);

r1.addActionListener(this);
lab9 = new JLabel(" ");
r2=new JRadioButton("女",false);
r2.addActionListener(this);
lab8 = new JLabel(" ");

lab4 = new JLabel("年齡");
tf3 = new JTextField(22);
lab5 = new JLabel("籍貫");
lab10 = new JLabel("");
for(int j=0;j<jiguan.length;j++)
cbx.addItem(jiguan[j]);
cbx.addItemListener(this);//注冊cbx給兼聽對象
lab11 = new JLabel("");
lab6 = new JLabel("愛好");
tf4 = new JTextField(22);
bt1 = new JButton("錄入");
bt2 = new JButton("刪除");
bt3 = new JButton("打開");
bt4 = new JButton("保存");
bt1.addActionListener(this);
bt2.addActionListener(this);
bt3.addActionListener(this);
bt4.addActionListener(this);
JPanel jp1 = new JPanel();
jp1.setLayout(new FlowLayout());

jp1.add(lab1);
jp1.add(tf1);
jp1.add(lab2);
jp1.add(tf2);
jp1.add(lab3);
jp1.add(lab7);
jp1.add(r1);
jp1.add(lab9);
jp1.add(r2);
bg.add(r1);
bg.add(r2);
jp1.add(lab8);
jp1.add(lab4);
jp1.add(tf3);
jp1.add(lab5);
jp1.add(lab10);
jp1.add(cbx);
jp1.add(lab11);
jp1.add(lab6);
jp1.add(tf4);
JPanel jp2 = new JPanel();
jp2.setLayout(new FlowLayout());
jp2.add(bt1);
jp2.add(bt2);
jp2.add(bt3);
jp2.add(bt4);
con.add(jp3,"North");
con.add(jp4,"Center");
jp4.setLayout(new GridLayout(1,2));
jp4.add(jsp);
jp4.add(jp);
jp.setLayout(new GridLayout(2,1));
jp.add(jp1,"North");
jp.add(jp2,"Center");

}

public void itemStateChanged(ItemEvent e)
{
//下拉菜單兼聽

String str=(String)e.getItem();//獲取所選項給str
for(int i=0;i<jiguan.length;i++)
if(str==jiguan[i])//判斷str 是否是jiguan數組中某個元素的內容
{
c=cbx.getSelectedIndex();//將所選項的下標給c
}

}
public void actionPerformed(ActionEvent e)
{

flag1=r1.isSelected();
flag2=r2.isSelected();
/*String rbt = e.getActionCommand();
if(rbt=="男")
{
font1=font1;
r=r1;
}
if(rbt=="女")
{
font1=font2;
r=r2;
}*/

if(e.getActionCommand().equals("錄入"))
{ if(flag1)
{

listModel.addElement("學號:"+tf1.getText());
listModel.addElement("姓名:"+tf2.getText());
listModel.addElement("性別:"+r1.getText());
listModel.addElement("年齡:"+tf3.getText());
listModel.addElement("籍貫:"+jiguan[c]);
listModel.addElement("愛好:"+tf4.getText());
list.setSelectedIndex(listModel.getSize()-1);
}
else if(flag2)
{
listModel.addElement("學號:"+tf1.getText());
listModel.addElement("姓名:"+tf2.getText());
listModel.addElement("性別:"+r2.getText());
listModel.addElement("年齡:"+tf3.getText());
listModel.addElement("籍貫:"+jiguan[c]);
listModel.addElement("愛好:"+tf4.getText());
}
}

if(e.getActionCommand().equals("刪除"))
{
int index[] = list.getSelectedIndices();
for(int i=index.length-1;i>=0;i--)
listModel.remove(index[i]);
list.setSelectedIndex(-1);
}
else if(e.getActionCommand().equals("打開"))
{
FileDialog fd = new FileDialog(f,"打開",FileDialog.LOAD);
String directory,filename,line,content;
fd.setVisible(true);
directory = fd.getDirectory();
filename = fd.getFile();

try
{
File myFile = new File(directory,filename);
BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(myFile)));
while((line=in.readLine())!=null)
{
listModel.addElement(line+"\n");
}
in.close();
}
catch(IOException ee)
{
System.out.print(ee.toString());
}
}
else if (e.getActionCommand().equals("保存"))
{
FileDialog fd = new FileDialog(f,"保存",FileDialog.SAVE);
String directory,filename,line,content;
fd.setVisible(true);
directory = fd.getDirectory();
filename = fd.getFile();

try
{
File myFile = new File(directory,filename);
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(myFile)));
for(int i=0;i<listModel.getSize();i++)
{

str=listModel.getElementAt(i)+"";
out.write(str+"\n");
}
out.close();
}
catch(IOException ee)
{
System.out.print(ee.toString());
}
}
}

public void valueChanged(ListSelectionEvent e)
{
if(listModel.getSize()==0||list.getSelectedIndex()==-1)
bt2.setEnabled(false);
else
bt2.setEnabled(true);
}
public static void main(String args[])
{
new xueshengxitong5xin();
}
}

⑵ 用java編程實現用戶注冊並進行登錄操作

String username = "",password = "",passwordagain = ""; // 定義用戶名和密碼

將該變數等於為全局變數 或局部變數即可

⑶ java 設計注冊用戶個人信息的JSP頁面

<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>注冊啦..</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

<link href="../css/rayx.css" type="text/css" rel="stylesheet">

<title>填寫注冊信息</title>
<script language="javascript">
<!--
function selectCity(){
if(RegInfoPost.state.value=="上海"){
RegInfoPost.city.value="上海";
}
else if(RegInfoPost.state.value=="天津"){
RegInfoPost.city.value="天津";
}
else if(RegInfoPost.state.value=="北京"){
RegInfoPost.city.value="北京";
}
else if(RegInfoPost.state.value=="重慶"){
RegInfoPost.city.value="重慶";
}
else if(RegInfoPost.state.value=="中國香港"){
RegInfoPost.city.value="中國香港";
}
else if(RegInfoPost.state.value=="中國澳門"){
RegInfoPost.city.value="中國澳門";
}
else{
RegInfoPost.city.value="";
}
}

function checkCity(){
if(RegInfoPost.city.value=="北京"){
RegInfoPost.address.focus();
}
if(RegInfoPost.city.value=="上海"){
RegInfoPost.address.focus();
}
if(RegInfoPost.city.value=="天津"){
RegInfoPost.address.focus();
}
if(RegInfoPost.city.value=="重慶"){
RegInfoPost.address.focus();
}
if(RegInfoPost.city.value=="中國香港"){
RegInfoPost.address.focus();
}
if(RegInfoPost.city.value=="中國澳門"){
RegInfoPost.address.focus();
}
}
-->
</script>
<script language="javascript">
<!--
function onSubmit(){
<%//檢查姓名%>
if(RegInfoPost.realName.value==""){
alert("請填寫姓名!");
RegInfoPost.realName.focus();
return false;
}
<%//檢查身份證%>
else if(RegInfoPost.identityCard.value==""){
alert("請填寫身份證號碼!");
RegInfoPost.identityCard.focus();
return false;
}
<%//檢查身份證的格式是否合法%>
else if(chkid(RegInfoPost.identityCard.value)==0){
alert("您填寫的身份證號碼不是合法的身份證號碼!");
RegInfoPost.identityCard.focus();
return false;
}
<%//檢查郵政編碼%>
else if(RegInfoPost.zip.value==""){
alert("請填寫郵政編碼!");
RegInfoPost.zip.focus();
return false;
}
<%//檢查郵政編碼是否含有空格%>
else if(chkspc(RegInfoPost.zip.value)!=1){
alert("郵政編碼含有空格!");
RegInfoPost.zip.focus();
return false;
}
<%//檢查郵政編碼是否符合格式%>
else if(checkZip(RegInfoPost.zip.value)==0){
alert("不是中國的郵政編碼,或者郵政編碼有非法字元!");
RegInfoPost.zip.focus();
return false;
}
<%//檢查省市自治區%>
else if(RegInfoPost.state.value=="default"){
alert("請選擇省市自治區!");
RegInfoPost.state.focus();
return false;
}
<%//檢查城市%>
else if(RegInfoPost.city.value==""){
alert("請填寫城市!");
RegInfoPost.city.focus();
return false;
}
<%//檢查地址%>
else if(RegInfoPost.address.value==""){
alert("請填寫地址!");
RegInfoPost.address.focus();
return false;
}
<%//檢查主要聯系電話%>
else if(RegInfoPost.phone.value==""){
alert("請填寫主要聯系電話!");
RegInfoPost.phone.focus();
return false;
}
<%//檢查生日(年)%>
else if(RegInfoPost.birthdayYear.value==""){
alert("請填寫您的生日!");
RegInfoPost.birthdayYear.focus();
return false;
}
<%//檢查出生年份有效性%>
else if(chkYear(RegInfoPost.birthdayYear.value)==0){
alert("您的生日不符合格式!");
RegInfoPost.birthdayYear.focus();
return false;
}
<%//檢查生日(月)%>
else if(RegInfoPost.birthdayMonth.value=="default"){
alert("請填寫您的生日!");
RegInfoPost.birthdayMonth.focus();
return false;
}
<%//檢查生日(日)%>
else if(RegInfoPost.birthdayDay.value=="default"){
alert("請填寫您的生日!");
RegInfoPost.birthdayDay.focus();
return false;
}
<%//檢查電子郵件%>
else if(RegInfoPost.email.value==""){
alert("請填寫您的電子郵件地址!");
RegInfoPost.email.focus();
return false;
}
<%//檢查電子郵件是否合法%>
else if(chkemail(RegInfoPost.email.value)!=1){
alert("電子郵件地址不符合格式!");
RegInfoPost.email.focus();
return false;
}
<%//檢查用於確認的電子郵件地址%>
else if(RegInfoPost.email.value!=RegInfoPost.email2.value){
alert("請確認您的電子郵件填寫的准確無誤!");
RegInfoPost.email2.focus();
return false;
}
else{
<%
session.setAttribute("frompage","reg.jsp");
%>
RegInfoPost.submit();
}
}

<%
//函數名:chkspc
//功能介紹:檢查是否含有空格
//參數說明:要檢查的字元串
//返回值:0:有空格 1:沒有空格 2:有空格
%>
function chkspc(a){
var i=a.length;
var j = 0;
var k = 0;
while(k<i){
if(a.charAt(k)!=" "){
j = j+1;
}
k = k+1;
}
if(j==0){
return 0;
}
if(i!=j){
return 2;
}
else{
return 1;
}
}

<%
//函數名:checkNum
//功能介紹:檢查是否為數字
//參數說明:要檢查的數字
//返回值:0:不是數字 1:是數字
%>
function checkNum(num){
var i,j,strTemp;
strTemp="0123456789";
if(num.length==0)
return 0;
for(i=0;i<num.length;i++){
j=strTemp.indexOf(num.charAt(i));
if (j==-1){
return 0;
}
}
return 1;
}

<%
//函數名:chkid
//功能介紹:檢查身份證
//參數說明:要檢查的字元串
//返回值:0:不合格 1:合格
%>
function chkid(id){
if(id.length!=15 && id.length!=18){
return 0;
}
else if(chkspc(id)!=1){
return 0;
}
else if(checkNum(id)==0){
return 0;
}
else
return 1;
}

<%
//函數名:checkZip
//功能介紹:檢查是否為有效的郵政編碼
//參數說明:要檢查的數字
//返回值:1為是有效的,0為不是有效的
%>
function checkZip(zip){
if(zip.length!=6){
return 0;
}
else if(checkNum(zip)==0){
return 0;
}
}

<%
//檢查電子郵件是否合法
//函數名:chkemail
//參數說明:要檢查的字元串
//返回值:1:是
%>
function chkemail(a){
var i=a.length;
var temp = a.indexOf('@');
var tempd = a.indexOf('.');
if(temp > 1) {
if((i-temp) > 3){
if((i-tempd)>0){
return 1;
}
}
}
}

<%
//檢查出生年份是否符合規定
//返回值:0:不正確 1:正確
%>
function chkYear(year){
if(year.length!=4)
return 0;
if(checkNum(year)==0)
return 0;
else if(chkspc(year)!=1)
return 0;
else
return 1;
}

-->
</script>
<script language="javascript">
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
function startRequest(){
createXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange;
var uname = document.getElementById("userName").value;
xmlHttp.open("POST","RegAjax?name="+uname,true);
xmlHttp.send(null);
}
function handleStateChange(){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
if("t"==(xmlHttp.responseText))
alert("用戶名已被佔用");
}
}
}

</script>
</head>

<body>
<%
if("OK".equals(request.getSession().getAttribute("reginfo"))){
response.setHeader("refresh","2;URL=../index.jsp");
%>
注冊成功啦。<br>
兩秒鍾後返回首頁,如果沒有返回<br>
請點這里<a href="../index.jsp">返回</a>主頁
<%
}else{
if(request.getSession().getAttribute("reginfo")!=null){
%>
<center><%=(String)request.getSession().getAttribute("reginfo") %></center>
<%} %>
<form name="RegInfoPost" method="post" action="reg.do">
<table width="615" height="617" border="0" align="center">

<tr><a href="./index.jsp">點這返回首頁</a>
<td colspan="4"><hr color="#cccccc" noshade="yes" size="1"></td>
</tr>

<tr>
<td colspan="4"><hr color="#cccccc" noshade="yes" size="1"></td>
</tr>

<tr>
<td width="150" height="30" valign="top"><!--DWLayoutEmptyCell--></td>
<td width="339" valign="middle">
<span class="style2"><strong>用戶帳號:</strong></span>
<input name="userName" type="text" class="item_table" id="userName" maxlength="16" OnBlur="startRequest()">
<span class="error">*(6-16個字元)</span> </td>
<td width="126" valign="middle">

</td>
</tr>
<tr>
<td></td>
<td valign="middle"><strong>用戶密碼:</strong> <input name="password" type="password" class="item_table" id="password" maxlength="16">
<span class="error">*(6-16個字元) </span> </td>
<td></td>
</tr>
<tr>
<td height="30"></td>
<td valign="middle"> <strong>確認密碼:</strong> <input name="password2" type="password" class="item_table" id="password2" maxlength="16">
<span class="error">*(請確認密碼)</span> </td>
<td></td>
</tr>
<tr align="center" valign="middle">
<td height="30" colspan="3" valign="middle"><hr color="#cccccc" noshade="yes" size="1"></td>
</tr>
<tr align="center" valign="middle">
<td height="20" colspan="3"><span class="error">密碼保護(在您忘記密碼時,將通過以下問題來重新獲得您的密碼)</span></td>
</tr>
<tr align="center" valign="middle">
<td height="30"></td>
<td colspan="2" align="left" valign="middle"><strong>密碼提示問題:</strong> <input name="question" type="text" class="item_table" id="question" maxlength="20">
<span class="error">*(不超過20個字元)</span> </td>
</tr>
<tr align="center" valign="middle">
<td height="30"></td>
<td colspan="2" align="left" valign="middle"><strong>密碼提示答案:</strong> <input name="answer" type="text" class="item_table" id="answer" maxlength="10">
<span class="error">*(不超過10個字元)</span> </td>
</tr>

<tr>
<td height="14" colspan="2" valign="top"><strong>姓名</strong><font color="#ff0000"><span class="error">*</span></td>
<td colspan="2" valign="top"><strong>身份證號碼</strong><font color="#ff0000"><span class="error">*</span></td>
</tr>
<tr>
<td height="18" colspan="2" valign="top">
<input name="realName" type="text" id="realname"> </td>
<td colspan="2" valign="top"><input name="identityCard" type="text" id="identityCard" size="18" maxlength="18"></td>
</tr>
<tr>
<td width="116" height="14"></td>
<td width="185"></td>
<td width="127"></td>
<td width="169"></td>
</tr>
<tr>
<td><strong>國家或地區</strong><font color="#ff0000"><span class="error">*</span></td>
<td><strong>郵政編碼</strong><font color="#ff0000"><span class="error">*</span></td>
<td><strong>省市自治區</strong><font color="#ff0000"><span class="error">*</span></td>
<td><strong>城市</strong><font color="#ff0000"><span class="error">*</span></td>
</tr>
<tr>
<td>
<select name="country" id="country">
<option selected>中國</option>
<option>中國香港</option>
<option>中國澳門</option>
<option>中國台灣</option>
</select>
</td>
<td>
<input name="zip" type="text" id="zip">
</td>
<td>
<select name="state" id="state" onclick="selectCity()">
<option value="default" selected name="value" isCity="false">選擇省市自治區</option>
<option name="value" value="北京" isCity="true">北京</option>
<option name="value" value="上海" isCity="true">上海</option>
<option name="value" value="天津" isCity="true">天津</option>
<option name="value" value="重慶" isCity="true">重慶</option>
<option name="value" value="安徽省" isCity="false">安徽省</option>
<option name="value" value="福建省" isCity="false">福建省</option>
<option name="value" value="甘肅省" isCity="false">甘肅省</option>
<option name="value" value="廣東省" isCity="false">廣東省</option>
<option name="value" value="廣西壯族自治區" isCity="false">廣西壯族自治區</option>
<option name="value" value="貴州省" isCity="false">貴州省</option>
<option name="value" value="海南省" isCity="false">海南省</option>
<option name="value" value="河北省" isCity="false">河北省</option>
<option name="value" value="河南省" isCity="false">河南省</option>
<option name="value" value="黑龍江省" isCity="false">黑龍江省</option>
<option name="value" value="湖北省" isCity="false">湖北省</option>
<option name="value" value="湖南省" isCity="false">湖南省</option>
<option name="value" value="吉林省" isCity="false">吉林省</option>
<option name="value" value="江蘇省" isCity="false">江蘇省</option>
<option name="value" value="江西省" isCity="false">江西省</option>
<option name="value" value="遼寧省" isCity="false">遼寧省</option>
<option name="value" value="內蒙古自治區" isCity="false">內蒙古自治區</option>
<option name="value" value="寧夏回族自治區" isCity="false">寧夏回族自治區</option>
<option name="value" value="青海省" isCity="false">青海省</option>
<option name="value" value="山東省" isCity="false">山東省</option>
<option name="value" value="山西省" isCity="false">山西省</option>
<option name="value" value="陝西省" isCity="false">陝西省</option>
<option name="value" value="四川省" isCity="false">四川省</option>
<option name="value" value="台灣省" isCity="false">台灣省</option>
<option name="value" value="西藏自治區" isCity="false">西藏自治區</option>
<option name="value" value="新疆維吾爾自治區" isCity="false">新疆維吾爾自治區</option>
<option name="value" value="雲南省" isCity="false">雲南省</option>
<option name="value" value="浙江省" isCity="false">浙江省</option>
<option name="value" value="中國香港" isCity="true">中國香港</option>
<option name="value" value="中國澳門" isCity="true">中國澳門</option>
</select>
</td>
<td>
<input name="city" type="text" id="city" onfocus="checkCity()">
</td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td colspan="4"><strong>送貨地址</strong><font color="#ff0000"><span class="error">*</span></td>
</tr>
<tr>
<td colspan="4">
<input name="address" type="text" id="address" size="41">
</td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td colspan="2"><strong>主要聯系電話</strong><font color="#ff0000"><span class="error">*</span></td>
</tr>
<tr>
<td colspan="2">
<input name="phone" type="text" id="phone">
</td>
</tr>
<tr>
<td colspan="4"></td>
</tr>

<tr>
<td colspan="4"><hr color="#cccccc" noshade="yes" size="1"></td>
</tr>
<tr>
<td colspan="4"><span class="error">請填寫真實有效的電子郵件地址</span></td>
</tr>
<tr>
<td colspan="4"><strong>電子郵件地址<font color="#ff0000"></strong><span class="error">*</span></td>
</tr>
<tr>
<td colspan="4">
<input name="email" type="text" id="email" size="40"> </td>
</tr>
<tr>
<td colspan="4"> <span class="style2">範例:</span><span class="style3"> [email protected]</span></td>
</tr>
<tr>
<td colspan="4"> <strong>請再一次輸入您的電子郵件地址</strong><font color="#ff0000"><span class="error">*</span></td>
</tr>
<tr>
<td colspan="4">
<input name="email2" type="text" id="email2" size="40"> </td>
</tr>
<tr>
<td colspan="4"><hr color="#cccccc" noshade="yes" size="1"></td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td></td><td colspan="2"><div align="center"><strong>接受用戶協議</strong></div></td>

</tr>
<tr>
<td height="87" colspan="4"><div align="center">
<textarea name="textarea" cols="70" rows="15" wrap="VIRTUAL"> 本網站僅為威迅教育交流學習之用,您必須無條件接受以下條件方可繼續注冊。

一、不得利用本站危害國家安全、泄露國家秘密,不得侵犯國家社會集體的和公民的合法權益,不得利用本站製作、復制和傳播下列信息:

(一)煽動抗拒、破壞憲法和法律、行政法規實施的;
(二)煽動顛覆國家政權,推翻社會主義制度的;
(三)煽動分裂國家、破壞國家統一的;
(四)煽動民族仇恨、民族歧視,破壞民族團結的;
(五)捏造或者歪曲事實,散布謠言,擾亂社會秩序的;
(六)宣揚封建迷信、淫穢、色情、賭博、暴力、兇殺、恐怖、教唆犯罪的;
(七)公然侮辱他人或者捏造事實誹謗他人的,或者進行其他惡意攻擊的;
(八)損害國家機關信譽的;
(九)其他違反憲法和法律行政法規的;
(十)進行商業廣告行為的。

二、互相尊重,對自己的言論和行為負責。 </textarea>
</div></td>
</tr>
<tr>
<td colspan="4"><div align="center"><strong>當通過點擊」注冊「按鈕即表示我已無條件接受以上協議</strong></div></td>
</tr>
<tr>
<td colspan="4"><hr color="#cccccc" noshade="yes" size="1"></td>
</tr>
<tr>
<td colspan="4"><div align="center">
<input type="submit" name="Submit" value="注冊" onClick="return onSubmit()">
<input type="reset" name="Reset" value="重置">
</div></td>
</tr>
<tr>
<td height="46" colspan="4"></td>
</tr>

</table>
</form>
<%} %>
</body>
</html>

閱讀全文

與個人信息注冊怎麼編程相關的資料

熱點內容
網路載入視頻失敗是怎麼回事 瀏覽:805
傳奇賬號在哪個文件夾里 瀏覽:346
百度app在哪裡安裝 瀏覽:587
如何設置路由器網路不斷網 瀏覽:471
傳到qq群里的文件怎麼刪除 瀏覽:861
索尼安卓71更新日誌 瀏覽:234
怎麼找手機里的垃圾app 瀏覽:540
2015藍橋杯代碼填空 瀏覽:698
安卓資料庫dbexecSQL 瀏覽:227
doc重命名文件格式 瀏覽:728
getscreen截圖工具下載 瀏覽:719
共識數據是什麼時候開始的 瀏覽:96
數碼管顯示電壓程序 瀏覽:479
資料庫文件有哪個 瀏覽:543
途強儲存在哪個文件夾 瀏覽:172
如何恢復被覆蓋文件 瀏覽:611
iphone5用哪個版本最好 瀏覽:327
extjsgrid禁用 瀏覽:426
如何查找國外論文的編程代碼 瀏覽:366
暗金顏色代碼 瀏覽:789

友情鏈接