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

Explain asp.net web forms.

785


What are the Difference between asp.net and asp ?

773


Where the assembly is stored in asp.net?

740


List the asp.net validation controls?

698


What is protected configuration?

838


Can you explain autopostback?

725


Describe the difference between inline and code behind - which is best in?

758


What are the types of caching in asp.net?

762


How is session id generated?

653


What are the authentication types in asp.net?

779


Explain asp.net application life cycle?

739


How to implement role based security in asp.net mvc? : Asp.Net MVC

631


Explain the different parts that constitute ASP.NET application?

767


Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc

761


What is session management in web application?

758