One application have three forms for registration .submit
button is at third form.after filling three forms only u
have to click submit button.After clicking the submit
button all the values in first,second& third form saved on
sql server.how to handle this situation .

Answer Posted / sujatha

Create One Class File add Property to set the values
like that
Public Class cls
Private _Customerid As String
Public Property Customerid() As String
Get
Return _Customerid
End Get
Set(ByVal Value As String)
_Customerid = Value
End Set
End Property
end class
in the coding side
we can create instance for that class assign the given
values
Public Install As New clsInstall
Install.Cutomerid= txtAddress.Text
we can assign all values in one class after that click
submit button we can get values from the class and store it
in sql server
Dim custmerid as string
customerid = Install.Address

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is redirectpermanent in asp.net?

614


What is session and application variable in asp net?

464


Explain the various authentication mechanisms in asp.net.

493


Who is using asp.net?

509


Define static member?

541






What is the viewstate in asp.net?

576


What is the parent class of all web server control?

539


What is Web API?

647


What is the function of new view engine in asp.net? : asp.net mvc

549


What kind of programming language is ASP.NET?

612


What are the differences between primary foreign and unique keys?

523


Which is faster union or union all?

582


if i wanna deploy my asp.net project to the production server and situation is that i m still not compiled my project i have as-is on my development side now on production server we dont have a visual studio now what kind of settings i need to be to do in webconfig /machine.config file to deploy my project and in iis too....

1604


How can we create custom controls in asp net?

540


Explain about asp.net caching?

577