When i upload a new image using web part. It's not showing the latest image modified. I want to query a image that is latest modified by the time. Example i want the image to displayed by the latest time modified.
Below is my code.
query.Query = @"<Query>
<Where><Eq><FieldRef Name='Title' /><Value Type='Text'></Value></Eq>
<And>
<Leq>
<FieldRef Name='Modified' />
<Value IncludeTimeValue='True' Type='DateTime'> <Now /></Value>
</Leq>
</And>
</Where>
<OrderBy>
<FieldRef Name='Modified' Ascending='False'/>
</OrderBy>
</Query>";