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 the concept of event bubbling in ASP.NET?

682


Which is faster viewdata or viewbag?

657


How to sign out from forms authentication?

640


Explain the path instructions in xaml?

652


Demonstrate Render and PreRender?

691






What is postback and autopostback in asp.net?

629


Is asp.net and .net same?

638


What are the main advantages of using asp.net?

637


What are the asp.net server side objects?

606


How to communicate via Remote proxy with Client? a)MarshalByRef b)Marshal by Value or Any thing else?

1662


1.What r collections? 2.What is .pdb file? 3.Is it possible to provide access to users in master page? 4.What is dirty n Phantom Read(SQL)? 5.What r different isolation levels(SQL)? 6.How to set authentication mode in web.config file?

1924


Tell me the code snippet to show how we can return 404 errors from HttpError?

895


What is css and what is it used for?

636


What is a server cookie?

592


What is paging in context of Memory?

752