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


Please Help Members By Posting Answers For Below Questions

Explain the advantages of passport authentication.

674


What is the difference between GridView and Repeater controls in ASP.NET?

772


How response object is related to asp's response object?

687


Explain the page lifecycle of an asp.net mvc? : asp.net mvc

579


How you can manage the state of application at the server side in ASP.NET?

778


What is session mode in asp.net?

718


How would you turn off cookies on a page of a website?

671


How should I destroy my objects in asp.net?

776


How we implement the multiple paypal value with gridview in my website and how we make a payment through Credit Card.

1649


What is applicatio domain?

738


Which data type does the rangevalidator control support?

705


What are custom user controls in asp.net?

725


Define globalization and localization.

737


Where can I get the details on migration of existing projects using various technologies to asp.net?

743


Define application state variable and session state variable?

761