Suppose in a scenario if we want to display information only
until 4.00 p.m and after that
means after 4.00 p.m if any one tries to access the
information it should give error mesage.
Then how will you write a delegate for this ? Give coding.
Answer Posted / hariharadeep
under page load event
string presenttime
presenttime = hrs & ":" & min
If presenttime > "16:00" Then
info.visibel=false
end if
| Is This Answer Correct ? | 7 Yes | 11 No |
Post New Answer View All Answers
How do I declare inout arguments in c#?
What namespace is list in c#?
What does type safe mean in c#?
What's difference between constants and static readonly?
Which is better javascript or c#?
Explain circular reference in c#?
What is sorted list in c#?
What is final keyword in c#?
What is delegates and events?
Can we override interface method?
If dll and exe files are same it means you can deploy both the files in gac?
What are destructors in C#?
How do I stop my console from closing in c#?
What is meant by desktop application?
How do I automate my desktop application?