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
Define page output caching?
Can we override the enablepartialrendering property of the scriptmanager class?
Can we create a multiple user simultaneously ?
Where sessions are stored in asp.net?
What is asp.net file?
Whats the difference between abstract factory pattern and factory pattern?
How to implement form based authentication in asp.net application?
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
Name the method that needs to be invoked on the dataadapter control to fill the generated dataset with data?
How to make paging concepts in datagrid in ASP.NET?
How would ASP and ASP.NET applications run at the same time on the same server?
Can we handle the error and redirect to some pages using web.config?
What is a web api?
Which method do you use to kill explicitly a users session?
Which type if caching will be used if we want to cache the portion of a page instead of whole page?