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
What is the question mark in a url?
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
What is http post action?
How do you identify that the page is postback?
In order to get assembly info which namespace we should import?
What does occur first in ASP.Net, Authentication or Authorization?
Can a master page have more than one contentplaceholder?
Explain what are the advantages of asp.net mvc framework? : asp.net mvc
How Session use Cookies in State Management?
In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?
What are the advantages of passport authentication?
What is the mvc model?
What is the difference between GridView and Repeater controls in ASP.NET?
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What is asp.net used for?