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
Gaurav Raj
NA
475
88.7k
when i click comments button than more comments are add
Sep 16 2017 10:01 AM
when i click comments button than more comments are add
in specific location
this is my code
it works but this insert is top row of datalist
protected void TotalComment_Click1(object sender, EventArgs e)
{
string Id = ((Button)sender).CommandArgument;
CommentsProcedureResult cr = new CommentsProcedureResult();
foreach (DataListItem dli in DataList1.Items)
{
DataList text = (DataList)dli.FindControl("DataList2");
Button btn = (Button)dli.FindControl("BtnViewpre");
btn.Visible = true;
int bid = Convert.ToInt32(Id);
var q1 = cs.da.CommentsProcedure(bid).OrderByDescending(oo => oo.C_Id).Take(6).Reverse();
text.DataSource = q1;
text.DataBind();
break;
}
}
please help me guys thankyou
Reply
Answers (
1
)
Printing unicode to console in C#
Admin Loadding Problem