Interview Question in Visual Studio 2005
Interview Question :: Does Microsoft visual studio web developer 2005 express edition supports for AJAX |
first I downloaded ajax.dll and ajaxpro.2.dll .
and tried following code after adding dll reference to my asp.net project.
web.config file:
<configuration>
<system.web>
<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx"
type="Ajax.PageHandlerFactory, Ajax" />
</httpHandlers>
...
<system.web>
</configuration>
.cs file:
public class Index : System.Web.UI.Page{
private void Page_Load(object sender, EventArgs e){
Ajax.Utility.RegisterTypeForAjax(typeof(...
//...
}
//...
} |
|
|
|

Loading ...