is it possible to persiste customize object in view state?
how it is?
Answer Posted / satish v itagi
You have to use <Serializable()> attribute prefixed to the
class declaration before you keep object of this class in
viewstate. However, larger the object, slower will be
performance. There will be risk of viewstate getting
corrupted.
Eg
'' in class definiton:
<serializable()> Public Class Fruit
private sName as string
public sub new(ByVal Name as string)
sName = Name
End Sub
readonly property Name as string
Get
return sName
end get
End Class
''in code behind:
if page.ispostback = false
dim MyApple as new Fruit("Kashmiri Apple")
ViewState("oMyFruit") = MyApple
end if
'' In button click
label1.text = ctype( ViewState("oMyFruit") , Fruit).Name
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the advantages of passport authentication.
What is the difference between GridView and Repeater controls in ASP.NET?
How response object is related to asp's response object?
Explain the page lifecycle of an asp.net mvc? : asp.net mvc
How you can manage the state of application at the server side in ASP.NET?
What is session mode in asp.net?
How would you turn off cookies on a page of a website?
How should I destroy my objects in asp.net?
How we implement the multiple paypal value with gridview in my website and how we make a payment through Credit Card.
What is applicatio domain?
Which data type does the rangevalidator control support?
What are custom user controls in asp.net?
Define globalization and localization.
Where can I get the details on migration of existing projects using various technologies to asp.net?
Define application state variable and session state variable?