This is very simple concept and possible through Page Navigation Control:-suppose You have two form one is-Default3.aspx and another is Default4.aspx Both form’s some fields are same.so I want after filling Default3.aspx form and when click to button or link button it should be navigate to Default4.aspx page with data,than after fill anather field and click to button for save,it will save to the data base.How it is possible. Please Follow this step :-
Step-1
Create Table in following code in sqlserver database:-
CREATE TABLE [dbo].[rabi2] (
[Id] INT IDENTITY (1, 1) NOT NULL,
[username] VARCHAR (50) NULL,
[colname] NCHAR (10) NULL,
[branch] VARCHAR (50) NULL,
[sem] VARCHAR (50) NULL,
[ads] VARCHAR (50) NULL,
PRIMARY KEY CLUSTERED ([Id] ASC)
);