TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Mahir Erbakan
NA
1
1.5k
how i can listing my blog page last record first!
Aug 14 2013 10:33 AM
protected void Page_Load(object sender, EventArgs e)
{
var procad = WS.SubCategories.Where(v => v.SUBID == int.Parse(Request.QueryString["id"])).FirstOrDefault();
doldur();
}
public void doldur()
{
var prode = WS.Bloglarims.Where(v => v.SUBID == int.Parse(Request.QueryString["id"])).ToList();
CollectionPager1.DataSource = prode;
CollectionPager1.BindToControl = dtList;
dtList.DataSource = CollectionPager1.DataSourcePaged;
}
Reply
Answers (
1
)
error comes on server in web applicaion
how to open popup window from codebehind in asp.net