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
87.9k
calling code behind function from javascript
Sep 25 2017 4:57 AM
i make this function
public
int
seemore(
int
a)
{
System.Threading.Thread.Sleep(5000);
var count = cs.da.Home2Procedure(Convert.ToInt32(Session[
"Id"
])).Count();
HiddenField1.Value = (Convert.ToInt32(HiddenField1.Value) + a).ToString();
int
tmpskip = Convert.ToInt32(HiddenField1.Value);
if
(Convert.ToInt32(HiddenField1.Value) <= count)
{
var q = cs.da.Home2Procedure(Convert.ToInt32(Session[
"Id"
])).Skip(tmpskip).Take(4);
DataList1.DataSource = q;
DataList1.DataBind();
foreach
(DataListItem dli
in
DataList1.Items)
{
DataList text = (DataList)dli.FindControl(
"DataList2"
);
Literal litral = (Literal)dli.FindControl(
"litBlogId"
);
LinkButton link = (LinkButton)dli.FindControl(
"TotalLike"
);
UpdatePanel up = (UpdatePanel)dli.FindControl(
"UpdatePanel1"
);
if
(text.Visible)
{
int
bid = Convert.ToInt32(litral.Text);
var q1 = cs.da.CommentsProcedure(bid).OrderByDescending(oo => oo.C_Id).Take(3).Reverse();
text.DataSource = q1;
text.DataBind();
}
var q2 = cs.da.TotalLikeNameProcedure(Convert.ToInt32(litral.Text));
// skip = DataList1.Items.Count;
//up.Update();
}
this function are in aspx.cs page
how can I call with javascript
please help guys
Reply
Answers (
5
)
Sql exception caught correct me where iam going wrong
Validation controls in ASP.NET