Hi, i made a test asp.net 3.5 project with Silverlight 3, and tried to deploy it in IIS 7.5 (in Windows 7). The Application Pool in IIS is using .Net 2.0 using Integrated mode. i ran into error, and i found out that i have to make changes in web.config file. My error was item #1 in this page: (learn.iis.net/page.aspx/381/...on-iis-70/)
But still, the error occured at the line of add path="GeoTile.axd" verb="*" ....
<system.webServer>
<handlers>
<add path="GeoTile.axd" verb="*" type="ThinkGeo.MapSuite.SilverlightEdition.TileHandler"/>
<validation validateIntegratedModeConfiguration="false" />
<system.webserver></system.webserver>
<handlers></handlers>
<add type="ThinkGeo.MapSuite.SilverlightEdition.TileHandler" path="GeoTile.axd" verb="*"></add>
<validation validateintegratedmodeconfiguration="false"></validation>
Can someone pls tell me how to properly deploy a .Net 3.5 project with Silverlight 3 content to IIS 7.5 on Windows 7 ? because Silverlight is relatively new to me, i never tried it before.
thanks.