473,732 Members | 2,043 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

trying AJAX in asp.net 2.0

I am trying the following thing in AJAX

<atlas:ScriptMa nager ID="scriptmanag er1" runat="Server"
EnablePartialRe ndering="true" />
<asp:DropDownLi st ID="cmbBranchna me" cssclass="Combo style" runat="server"
/>
<br/>

<atlas:UpdatePa nel ID="panel1" runat="server" UpdateMode="Con ditional" >
<ContentTemplat e>
<asp:DropDownLi st ID="cmbClientNa me" CssClass="combo style" runat="server"
/>
<br/>
<asp:DropDownLi st ID="cmbProjectN ame" cssclass="Combo style" runat="server"
/>
<br/>
<asp:DropDownLi st ID="cmbResource Name" cssclass="Combo style" runat="server"
/>
<asp:Button ID="AddListBtn " runat="server" Text="Add" />
<br/>
</ContentTemplate >
<Triggers>
<atlas:AsyncPos tBackTrigger ControlID="cmbB ranchname"
EventName="Sele ctedIndexChange d"/>
<atlas:AsyncPos tBackTrigger ControlID="AddL istBtn" EventName="Clic k"
/>
</Triggers>
</atlas:UpdatePan el>

here AddListBtn trigger works AJAX way but cmbBranchname event doesn't work.
below is my web.config
<?xml version="1.0"?>

<configuratio n>

<configSections >

<sectionGroup name="system.we b.extensions"
type="System.We b.Configuration .SystemWebExten sionsSectionGro up,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">

<sectionGroup name="scripting "
type="System.We b.Configuration .ScriptingSecti onGroup, System.Web.Exte nsions,
Version=1.0.610 25.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5">

<section name="scriptRes ourceHandler"
type="System.We b.Configuration .ScriptingScrip tResourceHandle rSection,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="MachineToAppl ication"/>

<sectionGroup name="webServic es"
type="System.We b.Configuration .ScriptingWebSe rvicesSectionGr oup,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">

<section name="jsonSeria lization"
type="System.We b.Configuration .ScriptingJsonS erializationSec tion,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="Everywhere "/>

<section name="profileSe rvice"
type="System.We b.Configuration .ScriptingProfi leServiceSectio n,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="MachineToAppl ication"/>

<section name="authentic ationService"
type="System.We b.Configuration .ScriptingAuthe nticationServic eSection,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="MachineToAppl ication"/>

</sectionGroup>

</sectionGroup>

</sectionGroup>

</configSections>

<system.web>

<pages buffer="true" enableSessionSt ate="true" enableViewState ="false"
enableViewState Mac="false" autoEventWireup ="true" theme="Workolog yTheme"
validateRequest ="false" enableEventVali dation="false">

<controls>

<add tagPrefix="atla s" namespace="Syst em.Web.UI"
assembly="Syste m.Web.Extension s, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</controls>

</pages>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->

<compilation debug="true">

<assemblies>

<add assembly="Syste m.Web.Extension s, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</assemblies>

</compilation>

<httpHandlers >

<remove verb="*" path="*.asmx"/>

<add verb="*" path="*.asmx" validate="false "
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add verb="*" path="*_AppServ ice.axd" validate="false "
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add verb="GET,HEAD" path="ScriptRes ource.axd"
type="System.We b.Handlers.Scri ptResourceHandl er, System.Web.Exte nsions,
Version=1.0.610 25.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"
validate="false "/>

</httpHandlers>

<httpModules>

<add name="ScriptMod ule" type="System.We b.Handlers.Scri ptModule,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</httpModules>

</system.web>

<system.web.ext ensions>

<scripting>

<webServices>

<!-- Uncomment this line to customize maxJsonLength and add a custom
converter -->

<!--

<jsonSerializat ion maxJsonLength=" 500">

<converters>

<add name="ConvertMe " type="Acme.SubA cme.ConvertMeTy peConverter"/>

</converters>

</jsonSerializati on>

-->

<!-- Uncomment this line to enable the authentication service. Include
requireSSL="tru e" if appropriate. -->

<!--

<authentication Service enabled="true" requireSSL = "true|false "/>

-->

<!-- Uncomment these lines to enable the profile service. To allow profile
properties to be retrieved

and modified in ASP.NET AJAX applications, you need to add each property
name to the readAccessPrope rties and

writeAccessProp erties attributes. -->

<!--

<profileServi ce enabled="true"

readAccessPrope rties="property name1,propertyn ame2"

writeAccessProp erties="propert yname1,property name2" />

-->

</webServices>

<!--

<scriptResource Handler enableCompressi on="true" enableCaching=" true" />

-->

</scripting>

</system.web.exte nsions>

<system.webServ er>

<validation validateIntegra tedModeConfigur ation="false"/>

<modules>

<add name="ScriptMod ule" preCondition="i ntegratedMode"
type="System.We b.Handlers.Scri ptModule, System.Web.Exte nsions,
Version=1.0.610 25.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"/>

</modules>

<handlers>

<remove name="WebServic eHandlerFactory-Integrated"/>

<add name="ScriptHan dlerFactory" verb="*" path="*.asmx"
preCondition="i ntegratedMode"
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add name="ScriptHan dlerFactoryAppS ervices" verb="*" path="*_AppServ ice.axd"
preCondition="i ntegratedMode"
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add name="ScriptRes ource" preCondition="i ntegratedMode" verb="GET,HEAD"
path="ScriptRes ource.axd" type="System.We b.Handlers.Scri ptResourceHandl er,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</handlers>

</system.webServe r>

</configuration>

Feb 2 '07 #1
2 2421
the dropdown is outside the update panel, so will it value is posted, it
display is not updated.

the update panel works by using ajax to post the form data, the server
then processes the page, and sends back the html that would be produced
by the panel (and its child controls). then client side, the inner html
of the panel is replaced with the returned html

-- bruce (sqlwork.com)

Rahul wrote:
I am trying the following thing in AJAX

<atlas:ScriptMa nager ID="scriptmanag er1" runat="Server"
EnablePartialRe ndering="true" />
<asp:DropDownLi st ID="cmbBranchna me" cssclass="Combo style" runat="server"
/>
<br/>

<atlas:UpdatePa nel ID="panel1" runat="server" UpdateMode="Con ditional" >
<ContentTemplat e>
<asp:DropDownLi st ID="cmbClientNa me" CssClass="combo style" runat="server"
/>
<br/>
<asp:DropDownLi st ID="cmbProjectN ame" cssclass="Combo style" runat="server"
/>
<br/>
<asp:DropDownLi st ID="cmbResource Name" cssclass="Combo style" runat="server"
/>
<asp:Button ID="AddListBtn " runat="server" Text="Add" />
<br/>
</ContentTemplate >
<Triggers>
<atlas:AsyncPos tBackTrigger ControlID="cmbB ranchname"
EventName="Sele ctedIndexChange d"/>
<atlas:AsyncPos tBackTrigger ControlID="AddL istBtn" EventName="Clic k"
/>
</Triggers>
</atlas:UpdatePan el>

here AddListBtn trigger works AJAX way but cmbBranchname event doesn't work.
below is my web.config
<?xml version="1.0"?>

<configuratio n>

<configSections >

<sectionGroup name="system.we b.extensions"
type="System.We b.Configuration .SystemWebExten sionsSectionGro up,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">

<sectionGroup name="scripting "
type="System.We b.Configuration .ScriptingSecti onGroup, System.Web.Exte nsions,
Version=1.0.610 25.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5">

<section name="scriptRes ourceHandler"
type="System.We b.Configuration .ScriptingScrip tResourceHandle rSection,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="MachineToAppl ication"/>

<sectionGroup name="webServic es"
type="System.We b.Configuration .ScriptingWebSe rvicesSectionGr oup,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">

<section name="jsonSeria lization"
type="System.We b.Configuration .ScriptingJsonS erializationSec tion,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="Everywhere "/>

<section name="profileSe rvice"
type="System.We b.Configuration .ScriptingProfi leServiceSectio n,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="MachineToAppl ication"/>

<section name="authentic ationService"
type="System.We b.Configuration .ScriptingAuthe nticationServic eSection,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5" requirePermissi on="false"
allowDefinition ="MachineToAppl ication"/>

</sectionGroup>

</sectionGroup>

</sectionGroup>

</configSections>

<system.web>

<pages buffer="true" enableSessionSt ate="true" enableViewState ="false"
enableViewState Mac="false" autoEventWireup ="true" theme="Workolog yTheme"
validateRequest ="false" enableEventVali dation="false">

<controls>

<add tagPrefix="atla s" namespace="Syst em.Web.UI"
assembly="Syste m.Web.Extension s, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</controls>

</pages>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->

<compilation debug="true">

<assemblies>

<add assembly="Syste m.Web.Extension s, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</assemblies>

</compilation>

<httpHandlers >

<remove verb="*" path="*.asmx"/>

<add verb="*" path="*.asmx" validate="false "
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add verb="*" path="*_AppServ ice.axd" validate="false "
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add verb="GET,HEAD" path="ScriptRes ource.axd"
type="System.We b.Handlers.Scri ptResourceHandl er, System.Web.Exte nsions,
Version=1.0.610 25.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"
validate="false "/>

</httpHandlers>

<httpModules>

<add name="ScriptMod ule" type="System.We b.Handlers.Scri ptModule,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</httpModules>

</system.web>

<system.web.ext ensions>

<scripting>

<webServices>

<!-- Uncomment this line to customize maxJsonLength and add a custom
converter -->

<!--

<jsonSerializat ion maxJsonLength=" 500">

<converters>

<add name="ConvertMe " type="Acme.SubA cme.ConvertMeTy peConverter"/>

</converters>

</jsonSerializati on>

-->

<!-- Uncomment this line to enable the authentication service. Include
requireSSL="tru e" if appropriate. -->

<!--

<authentication Service enabled="true" requireSSL = "true|false "/>

-->

<!-- Uncomment these lines to enable the profile service. To allow profile
properties to be retrieved

and modified in ASP.NET AJAX applications, you need to add each property
name to the readAccessPrope rties and

writeAccessProp erties attributes. -->

<!--

<profileServi ce enabled="true"

readAccessPrope rties="property name1,propertyn ame2"

writeAccessProp erties="propert yname1,property name2" />

-->

</webServices>

<!--

<scriptResource Handler enableCompressi on="true" enableCaching=" true" />

-->

</scripting>

</system.web.exte nsions>

<system.webServ er>

<validation validateIntegra tedModeConfigur ation="false"/>

<modules>

<add name="ScriptMod ule" preCondition="i ntegratedMode"
type="System.We b.Handlers.Scri ptModule, System.Web.Exte nsions,
Version=1.0.610 25.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"/>

</modules>

<handlers>

<remove name="WebServic eHandlerFactory-Integrated"/>

<add name="ScriptHan dlerFactory" verb="*" path="*.asmx"
preCondition="i ntegratedMode"
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add name="ScriptHan dlerFactoryAppS ervices" verb="*" path="*_AppServ ice.axd"
preCondition="i ntegratedMode"
type="System.We b.Script.Servic es.ScriptHandle rFactory,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

<add name="ScriptRes ource" preCondition="i ntegratedMode" verb="GET,HEAD"
path="ScriptRes ource.axd" type="System.We b.Handlers.Scri ptResourceHandl er,
System.Web.Exte nsions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5"/>

</handlers>

</system.webServe r>

</configuration>
Feb 2 '07 #2
no.... i got it ... even if "cmbBranchn ame" is outside updatepanel tag
(which is the first element) it works ...
i forgot to add autopostback=tr ue ...

Rahul

"bruce barker" <no****@nospam. comwrote in message
news:uK******** ******@TK2MSFTN GP04.phx.gbl...
the dropdown is outside the update panel, so will it value is posted, it
display is not updated.

the update panel works by using ajax to post the form data, the server
then processes the page, and sends back the html that would be produced by
the panel (and its child controls). then client side, the inner html of
the panel is replaced with the returned html

-- bruce (sqlwork.com)

Rahul wrote:
>I am trying the following thing in AJAX

<atlas:ScriptM anager ID="scriptmanag er1" runat="Server"
EnablePartialR endering="true" />
<asp:DropDownLi st ID="cmbBranchna me" cssclass="Combo style"
runat="serve r" />
<br/>

<atlas:UpdateP anel ID="panel1" runat="server" UpdateMode="Con ditional" >
<ContentTempla te>
<asp:DropDownLi st ID="cmbClientNa me" CssClass="combo style"
runat="serve r" />
<br/>
<asp:DropDownLi st ID="cmbProjectN ame" cssclass="Combo style"
runat="serve r" />
<br/>
<asp:DropDownLi st ID="cmbResource Name" cssclass="Combo style"
runat="serve r" />
<asp:Button ID="AddListBtn " runat="server" Text="Add" />
<br/>
</ContentTemplate >
<Triggers>
<atlas:AsyncPos tBackTrigger ControlID="cmbB ranchname"
EventName="Sel ectedIndexChang ed"/>
<atlas:AsyncPos tBackTrigger ControlID="AddL istBtn"
EventName="Cli ck" />
</Triggers>
</atlas:UpdatePan el>

here AddListBtn trigger works AJAX way but cmbBranchname event doesn't
work.
below is my web.config
<?xml version="1.0"?>

<configuration >

<configSection s>

<sectionGrou p name="system.we b.extensions"
type="System.W eb.Configuratio n.SystemWebExte nsionsSectionGr oup,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35">

<sectionGrou p name="scripting "
type="System.W eb.Configuratio n.ScriptingSect ionGroup,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35">

<section name="scriptRes ourceHandler"
type="System.W eb.Configuratio n.ScriptingScri ptResourceHandl erSection,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35" requirePermissi on="false"
allowDefinitio n="MachineToApp lication"/>

<sectionGrou p name="webServic es"
type="System.W eb.Configuratio n.ScriptingWebS ervicesSectionG roup,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35">

<section name="jsonSeria lization"
type="System.W eb.Configuratio n.ScriptingJson SerializationSe ction,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35" requirePermissi on="false"
allowDefinitio n="Everywhere "/>

<section name="profileSe rvice"
type="System.W eb.Configuratio n.ScriptingProf ileServiceSecti on,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35" requirePermissi on="false"
allowDefinitio n="MachineToApp lication"/>

<section name="authentic ationService"
type="System.W eb.Configuratio n.ScriptingAuth enticationServi ceSection,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35" requirePermissi on="false"
allowDefinitio n="MachineToApp lication"/>

</sectionGroup>

</sectionGroup>

</sectionGroup>

</configSections>

<system.web>

<pages buffer="true" enableSessionSt ate="true" enableViewState ="false"
enableViewStat eMac="false" autoEventWireup ="true" theme="Workolog yTheme"
validateReques t="false" enableEventVali dation="false">

<controls>

<add tagPrefix="atla s" namespace="Syst em.Web.UI"
assembly="Syst em.Web.Extensio ns, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35"/>

</controls>

</pages>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->

<compilation debug="true">

<assemblies>

<add assembly="Syste m.Web.Extension s, Version=1.0.610 25.0,
Culture=neutra l, PublicKeyToken= 31bf3856ad364e3 5"/>

</assemblies>

</compilation>

<httpHandler s>

<remove verb="*" path="*.asmx"/>

<add verb="*" path="*.asmx" validate="false "
type="System.W eb.Script.Servi ces.ScriptHandl erFactory,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35"/>

<add verb="*" path="*_AppServ ice.axd" validate="false "
type="System.W eb.Script.Servi ces.ScriptHandl erFactory,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35"/>

<add verb="GET,HEAD" path="ScriptRes ource.axd"
type="System.W eb.Handlers.Scr iptResourceHand ler, System.Web.Exte nsions,
Version=1.0.61 025.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"
validate="fals e"/>

</httpHandlers>

<httpModules >

<add name="ScriptMod ule" type="System.We b.Handlers.Scri ptModule,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35"/>

</httpModules>

</system.web>

<system.web.ex tensions>

<scripting>

<webServices >

<!-- Uncomment this line to customize maxJsonLength and add a custom
converter -->

<!--

<jsonSerializa tion maxJsonLength=" 500">

<converters>

<add name="ConvertMe " type="Acme.SubA cme.ConvertMeTy peConverter"/>

</converters>

</jsonSerializati on>

-->

<!-- Uncomment this line to enable the authentication service. Include
requireSSL="tr ue" if appropriate. -->

<!--

<authenticatio nService enabled="true" requireSSL = "true|false "/>

-->

<!-- Uncomment these lines to enable the profile service. To allow
profile properties to be retrieved

and modified in ASP.NET AJAX applications, you need to add each property
name to the readAccessPrope rties and

writeAccessPro perties attributes. -->

<!--

<profileServic e enabled="true"

readAccessProp erties="propert yname1,property name2"

writeAccessPro perties="proper tyname1,propert yname2" />

-->

</webServices>

<!--

<scriptResourc eHandler enableCompressi on="true" enableCaching=" true" />

-->

</scripting>

</system.web.exte nsions>

<system.webSer ver>

<validation validateIntegra tedModeConfigur ation="false"/>

<modules>

<add name="ScriptMod ule" preCondition="i ntegratedMode"
type="System.W eb.Handlers.Scr iptModule, System.Web.Exte nsions,
Version=1.0.61 025.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"/>

</modules>

<handlers>

<remove name="WebServic eHandlerFactory-Integrated"/>

<add name="ScriptHan dlerFactory" verb="*" path="*.asmx"
preCondition=" integratedMode"
type="System.W eb.Script.Servi ces.ScriptHandl erFactory,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35"/>

<add name="ScriptHan dlerFactoryAppS ervices" verb="*"
path="*_AppSer vice.axd" preCondition="i ntegratedMode"
type="System.W eb.Script.Servi ces.ScriptHandl erFactory,
System.Web.Ext ensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35"/>

<add name="ScriptRes ource" preCondition="i ntegratedMode" verb="GET,HEAD"
path="ScriptRe source.axd"
type="System.W eb.Handlers.Scr iptResourceHand ler, System.Web.Exte nsions,
Version=1.0.61 025.0, Culture=neutral , PublicKeyToken= 31bf3856ad364e3 5"/>

</handlers>

</system.webServe r>

</configuration>

Feb 5 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
4326
by: bobzimuta | last post by:
I'm creating a simple AJAX library. It's an object that will return an array containing the response text or xml. I'm trying to find a way to assign the response as a property of the object, but from within an inline function. Within the AJAX object: this.xmlhttp = new XMLHttpRequest(); this.response = ''; //to contain the response text OR xml var that = this; //since we cannot reference this within the
0
1844
by: melledge | last post by:
Ajax Developers' Day added to XTech 2006 agenda XTech 2006 - 17-19 May - Hotel Grand Krasnopolsky - Amsterdam, The Netherlands
0
1838
by: melledge | last post by:
Ajax Developers' Day to Kick Off XTech 2006 Conference Industry experts offer insight into next generation of the Web ALEXANDRIA, VIRGINIA, USA - April 25, 2006 - In response to the rapidly developing world of Ajax user interfaces on the browser, IDEAlliance (www.idealliance.org) announced today that its annual XTech Conference will kick off on May 16 with Ajax Developers' Day. XTech 2006 (www.xtech-conference.org), to be held May...
15
1567
by: James Black | last post by:
If you go to http://dante.acomp.usf.edu/HomeworkAssistant/index.php you will see my code. Type in: s = a + b and hit tab, and you will see the extra words. How do I remove these? Here is a snippet of my code: var myvalue = targ.value;
1
16509
by: www.web20developers.com | last post by:
http://www.web20developers.com http://www.web20developers.com/index.php?option=com_content&task=view... Ajallerix : AJAX, simple, fast Web image gallery demo ; at Novell AJAX - microlink pattern tutorial : A microlink is a link that opens up
2
4365
by: John Doe | last post by:
Here's my issue: I have an instant messenger type feature for my site, its basically an ajax IM feature. I run with a mysql backend on the site, i have a div on my main page that runs a javascript timer to load the php page via ajax every 15 seconds which checks the "pinguser" table to see if the user has any chat requests, then echoes them to a div on the page. what i REALLY want to do is have the ajax page see if there is a ping for the...
3
1319
by: dmorand | last post by:
I've looked far and wide around the internet trying to find a decent tutorial on how to start using ajax to control my form posting. I'd like to have it so my users don't have to go to a new page after they've submitted a page, but my ajax/java skills are lacking. I've purchased a few books and have started learning, but I'm looking for a tutorial to get off and running. Any help would be appreciated.
0
8773
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9445
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9234
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9180
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6733
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6030
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3259
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2177
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.