Hello everyone, i have a small question to all ........as i am new to ASP. i know WebPage is state less...hence we can make use of ViewState, Session..etc. But i was thinking if we can save user specific data in Smart Fields (Properties)
private string _Employee_ID;
public string Message
{
get
{
return _Employee_ID;
}
set
{
_Employee_ID = value;
}
}
Any help is deeply appreciated. Thank you in advance.
Go to the complete details ...