我在VS2010中新建了一个页面,当时没有添加母版页,事后想要添加,要怎么办?

我在VS2010中新建了一个页面,当时没有添加母版页,事后想要添加,要怎么办?,第1张

QQ953126432

或者假设你新建的母版页是sellMgr.Master

<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="sellMgr.Master" title="原来页面的title" CodeBehind="test.aspx.cs" Inherits="test" %>

<asp:Content ContentPlaceHolderID ="ContentPlaceHolder1" ID="contid" runat="server" >

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

<div id="TreeDiv" runat="server" style="overflow:autoz-index:400pxdisplay:blockmargin-top:0px ">

<asp:TreeView ID="TreeView1"runat="server" Width="192px" ShowLines="True"

ShowCheckBoxes="All"

ExpandDepth="1" >

</asp:TreeView>

</div>

</asp:Content>

只需在最上边page里添加一个引用MasterPageFile 、添加一个title

然后把之前网页的JS、css引用 以及form内的代码 放到content内就可以了

欢迎提问

这个明显是WinForm的吧。

1、新建数据库

USE [master]

GO

/****** Object: Database [数据库名]Script Date: 09/12/2014 16:56:48 ******/

CREATE DATABASE [数据库名] ON PRIMARY

( NAME = N'数据库名', FILENAME = N'D:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\数据库名.mdf' , SIZE = 80896KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )

LOG ON

( NAME = N'数据库名_log', FILENAME = N'D:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\数据库名_log.LDF' , SIZE = 22144KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)

GO

2、建立数据表

USE[数据库名]

GO

CREATE TABLE [个人信息] (

[ID] [int] IDENTITY (1, 1) NOT NULL,

[姓名] [nvarchar] (50) NOT NULL DEFAULT (''),

[性别] [nvarchar] (1) NOT NULL DEFAULT (''),

[年龄] [int] NOT NULL DEFAULT (0),

[籍贯] [nvarchar] (50) NOT NULL DEFAULT (''),

[所在地] [nvarchar] (4000) NOT NULL DEFAULT (''))

/****其它字段自行添加****/

ALTER TABLE [AccessList] WITH NOCHECK ADD CONSTRAINT [PK_个人信息] PRIMARY KEY NONCLUSTERED ( [ID] )

3、点击button后,确认添加个人信息时:

INSERT [个人信息] ([姓名],[性别],[年龄],[籍贯]) VALUES ( '"+ txtXM.Text.Trim()+"','"+cbxXB.Text.Trim()+"',"+ txtNL.Text.Trim()+",'"+txtJG.Text.Trim()+"')

SQL语句,尽量使用参数,避免SQL注入。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11944494.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存