adspace


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


Please Help Members By Posting Answers For Below Questions

How to assign Null value to Var?

1064


What is expression tree in c#?

998


What is an abstract class c#?

969


Which namespaces are necessary to create a localized application?

1142


Why can't we use a static class instead of singleton?

954


How do you inherit a class into other class in c#?

995