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
Explain the concept of event bubbling in ASP.NET?
Which is faster viewdata or viewbag?
How to sign out from forms authentication?
Explain the path instructions in xaml?
Demonstrate Render and PreRender?
What is postback and autopostback in asp.net?
Is asp.net and .net same?
What are the main advantages of using asp.net?
What are the asp.net server side objects?
How to communicate via Remote proxy with Client? a)MarshalByRef b)Marshal by Value or Any thing else?
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?
Tell me the code snippet to show how we can return 404 errors from HttpError?
What is css and what is it used for?
What is a server cookie?
What is paging in context of Memory?