hi, i am really confused here, as i read many places, Update panel makes a full post back, and i have somehow understood that web serivces are much much better for performance, so if i am developing my site should i user web services or normal functions like the following
protected void Page_Load(object sender, EventArgs e)
{
GetDate();
}
protected void Button1_Click(object sender, EventArgs e)
{
}
[WebMethod()]
protected DateTime GetDate()
{
return DateTime.Now;
}
- will i use post back ?
- what are the pitfalls of web services, specially in AJAX website ?
- what is your advise on best squeezing out the most performance with Microsoft AJAX
thanks in advanced.