本文介绍了如何编写代码以获得组织名称他在第1页到第2页输入的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 这是我的数据库表: This is my DB table :CREATE TABLE [dbo].[Organisation]( [OrganisationID] [int] IDENTITY(1,1) NOT NULL, [OrganisationName] [nvarchar](50) NULL, [CreatedAt] [datetime] NULL DEFAULT (getdate()), CONSTRAINT [PK_Organisation] PRIMARY KEY CLUSTERED( [OrganisationID] ASC 在设计部分,我们只有组织名称,用户必须输入组织名称然后才会重定向到注册页面: 它包含他的个人详细信息,并且还必须显示组织名称。所以把组织作为外键但是如何编写代码以获得他在第1页到第2页输入的组织名称。And in the design part we have only Organisation Name, the user has to enter the Organisation name then it will redirects to register page :there it contains his personal details and also again the organisation name has to be displayed. so have taken organisation as foreign key but how to write the code to get the organisation name what he entered in 1st page to the 2nd page.推荐答案 这篇关于如何编写代码以获得组织名称他在第1页到第2页输入的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-15 19:15