Click here to Skip to main content
15,915,869 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How can i call C# function Through javascript on aspx page Pin
vaghelabhavesh3-Feb-09 4:24
vaghelabhavesh3-Feb-09 4:24 
GeneralRe: How can i call C# function Through javascript on aspx page Pin
Ranjit Viswakumar3-Feb-09 9:34
Ranjit Viswakumar3-Feb-09 9:34 
QuestionPageMethods vs HTTP Handlers Pin
Anurag Gandhi2-Feb-09 23:03
professionalAnurag Gandhi2-Feb-09 23:03 
AnswerRe: PageMethods vs HTTP Handlers Pin
N a v a n e e t h2-Feb-09 23:40
N a v a n e e t h2-Feb-09 23:40 
GeneralRe: PageMethods vs HTTP Handlers Pin
Anurag Gandhi3-Feb-09 0:07
professionalAnurag Gandhi3-Feb-09 0:07 
GeneralRe: PageMethods vs HTTP Handlers Pin
N a v a n e e t h3-Feb-09 4:41
N a v a n e e t h3-Feb-09 4:41 
GeneralRe: PageMethods vs HTTP Handlers Pin
Jon Rista3-Feb-09 10:27
Jon Rista3-Feb-09 10:27 
AnswerRe: PageMethods vs HTTP Handlers Pin
Jon Rista3-Feb-09 10:26
Jon Rista3-Feb-09 10:26 
PageMethods behave as web services, but offer a bit more capabilities than a web service. Unlike a full postback (i.e. UpdatePanel) which will incurr the overhead of processing the full ASP.NET pipeline, a PageMethod has a bit of a truncated pipeline that sets up the context, but bypasses all the rest of the event chain required for a full page postback. An HttpHandler is like a Page (in fact, a Page is an HttpHandler), and as such it will require the full event chain to be fired. A PageMethod is pretty much the most efficient way to perform an AJAX call that requires Session and HttpContext access, but not Request/Response access. A WebService might be faster, but there is SOAP overhead that could hurt performance.

Given that HttpHandlers and WebServices require a bit more work to write than a PageMethod, and the extra processing cost for both, PageMethods are generally the best solution when a full postback (async via UpdatePanel or not) is not needed.
QuestionHTML Tabs - Help Required Pin
Jay_se2-Feb-09 22:49
Jay_se2-Feb-09 22:49 
AnswerRe: HTML Tabs - Help Required Pin
mr_muskurahat3-Feb-09 2:19
mr_muskurahat3-Feb-09 2:19 
QuestionRe: HTML Tabs - Help Required Pin
Jay_se3-Feb-09 19:11
Jay_se3-Feb-09 19:11 
AnswerRe: HTML Tabs - Help Required Pin
mr_muskurahat3-Feb-09 19:23
mr_muskurahat3-Feb-09 19:23 
GeneralRe: HTML Tabs - Help Required Pin
Jay_se3-Feb-09 23:44
Jay_se3-Feb-09 23:44 
GeneralRe: HTML Tabs - Help Required Pin
mr_muskurahat4-Feb-09 7:36
mr_muskurahat4-Feb-09 7:36 
GeneralRe: HTML Tabs - Help Required Pin
mr_muskurahat4-Feb-09 7:40
mr_muskurahat4-Feb-09 7:40 
QuestionAjax problem in internetexplorer 6 & firefox Pin
mr_muskurahat2-Feb-09 22:21
mr_muskurahat2-Feb-09 22:21 
AnswerRe: Ajax problem in internetexplorer 6 & firefox Pin
Christian Graus2-Feb-09 22:30
protectorChristian Graus2-Feb-09 22:30 
AnswerRe: Ajax problem in internetexplorer 6 & firefox Pin
sarang_k2-Feb-09 22:48
sarang_k2-Feb-09 22:48 
GeneralRe: Ajax problem in internetexplorer 6 & firefox Pin
mr_muskurahat2-Feb-09 22:54
mr_muskurahat2-Feb-09 22:54 
GeneralRe: Ajax problem in internetexplorer 6 & firefox Pin
sarang_k2-Feb-09 23:14
sarang_k2-Feb-09 23:14 
AnswerRe: Ajax problem in internetexplorer 6 & firefox Pin
Ranjit Viswakumar3-Feb-09 5:38
Ranjit Viswakumar3-Feb-09 5:38 
QuestionRestore database via XML Pin
RajaAhmed2-Feb-09 22:17
RajaAhmed2-Feb-09 22:17 
AnswerRe: Restore database via XML Pin
Christian Graus2-Feb-09 22:32
protectorChristian Graus2-Feb-09 22:32 
GeneralRe: Restore database via XML Pin
RajaAhmed2-Feb-09 22:47
RajaAhmed2-Feb-09 22:47 
GeneralRe: Restore database via XML Pin
SeMartens2-Feb-09 22:51
SeMartens2-Feb-09 22:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.