导航:首页 > 编程知识 > 个人信息注册怎么编程

个人信息注册怎么编程

发布时间: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>

阅读全文

与个人信息注册怎么编程相关的资料

热点内容
40岁男人适合的微信名 浏览:925
编程里比例怎么打 浏览:215
苹果12两个app如何分屏 浏览:592
ps下载完不是压缩文件 浏览:362
电脑中的个人文件包括什么 浏览:572
网络连接一般什么密码 浏览:199
java定时器quartz实例 浏览:259
稻壳excel文件太大怎么弄 浏览:901
文件里的视频如何保存到相册 浏览:428
手机百度云文件电脑 浏览:957
编程怎么做到时钟精准 浏览:912
锤子用过的壁纸在哪个文件里 浏览:468
qq网站安全性未知访问不了怎么办 浏览:270
燕秀怎么修改编程人名字 浏览:789
2012年天之眼导航升级 浏览:595
如何安装视频文件 浏览:315
红米2A升级miui9 浏览:927
如何在表格中加入一行数据库 浏览:421
dnf远古二能升级85吗 浏览:251
extjsbbar属性 浏览:355

友情链接