i am trying to get the 3 most upcoming events from the current date and time (The current data and time refers the time everytime my web part loads. Basically it is not a fixed date and picks up the time everytime my web part is loaded) Here is my Query. How should I modify it to achieve this?
<Query>
<Where>
<And>
<Geq>
<FieldRef Name='EventDate' />
<Value IncludeTimeValue='TRUE' Type='DateTime'>2012-03-21T12:18:55Z</Value>
</Geq>
<IsNotNull>
<FieldRef Name='Title' />
</IsNotNull>
</And>
</Where>
<OrderBy>
<FieldRef Name='EventDate' Ascending='True' />
</OrderBy>
</Query>