Hi,
I am new to asp.net so please don't mind for this silly question. I have more than 5 post in my blog section with same tag. When i Click on that tag in tag cloud it should show posts related to that tag and show only 5 per page and you can navigate to next page by using the arrows or page no ....
Now the problem is when i click next arrow it shows me an erroe message like this-
Im öffentlichen Bereich wurden keine Einträge gefunden. Bitte melden Sie sich im Member Bereich an.
I found this in my blogsearch.aspx.cs as
if (result.Rows.Count == 0)
{
lbNoResults.Text = "Im öffentlichen Bereich wurden keine Einträge gefunden. Bitte melden Sie sich im Member Bereich an.";
lbNoResults.Visible = true;
}
Now i have no idea what to do. Please help.