Answer Posted / jitender
Suppose we have a property BarColor
the to make it read only use
private string color;
public string BarColor
{
get
{
return(color);
}
} // No need to set it
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of using session?
What is an il?
how to transfer the file from client to server using asp.net
What are user controls?
Define static member?
What is ispostback property?
What is asp.net web application?
How does a web application session work?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
What is the difference between asp.net mvc and asp.net webforms? : asp.net mvc
What are the server controls in asp.net?
How does the cookies work in asp.net?
What are the differences between code behind and code inline?
Describe in brief .net framework and its components.
Can we have a web application running without web.config file?