Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

asp.net

Migração Atlas para Ajax

Recommended Posts

Estou tentando fazer a migração da minha aplicação do Atlas para o Ajax, li o arquivo que o instalador do Ajax manda para migração e fiz as correções, abaixo está o meu webconfig

 

<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

 

<!--

The configSections define a section for ASP.NET Atlas.

-->

<configSections>

<sectionGroup name="microsoft.web" type="Microsoft.Web.Configuration.MicrosoftWebSectionGroup, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

<sectionGroup name="scripting" type="Microsoft.Web.Configuration.ScriptingSectionGroup, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

<sectionGroup name="webServices" type="Microsoft.Web.Configuration.ScriptingWebServicesSectionGroup, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

<section name="jsonSerialization" type="Microsoft.Web.Configuration.ScriptingJsonSerializationSection, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />

<section name="profileService" type="Microsoft.Web.Configuration.ScriptingProfileServiceSection, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />

<section name="authenticationService" type="Microsoft.Web.Configuration.ScriptingAuthenticationServiceSection, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />

</sectionGroup>

</sectionGroup>

</sectionGroup>

</configSections>

 

<system.web>

<pages>

<controls>

<add tagPrefix="asp" namespace="Microsoft.Web.UI" assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagPrefix="asp" namespace="Microsoft.Web.UI.Controls" assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</controls>

<tagMapping>

<add tagType="System.Web.UI.WebControls.CompareValidator" mappedTagType="Microsoft.Web.UI.Compatibility.CompareValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.CustomValidator" mappedTagType="Microsoft.Web.UI.Compatibility.CustomValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.RangeValidator" mappedTagType="Microsoft.Web.UI.Compatibility.RangeValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.RegularExpressionValidator" mappedTagType="Microsoft.Web.UI.Compatibility.RegularExpressionValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.RequiredFieldValidator" mappedTagType="Microsoft.Web.UI.Compatibility.RequiredFieldValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.ValidationSummary" mappedTagType="Microsoft.Web.UI.Compatibility.ValidationSummary, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</tagMapping>

 

<namespaces>

<clear/>

<add namespace="System"/>

<add namespace="System.Collections"/>

<add namespace="System.Collections.Specialized"/>

<add namespace="System.Configuration"/>

<add namespace="System.Text"/>

<add namespace="System.Text.RegularExpressions"/>

<add namespace="System.Web"/>

<add namespace="System.Web.Caching"/>

<add namespace="System.Web.SessionState"/>

<add namespace="System.Web.Security"/>

<add namespace="System.Web.Profile"/>

<add namespace="System.Web.UI"/>

<add namespace="System.Web.UI.WebControls"/>

<add namespace="System.Web.UI.WebControls.WebParts"/>

<add namespace="System.Web.UI.HtmlControls"/>

</namespaces>

</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.

 

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<globalization culture="pt-BR" uiCulture="pt-BR"/>

<compilation debug="true" strict="false" explicit="true">

<assemblies>

<add assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="Microsoft.Build.Utilities, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="Microsoft.Build.Framework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

</assemblies>

</compilation>

 

<httpHandlers>

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

<add verb="*" path="*.asmx" validate="false" type="Microsoft.Web.Script.Services.ScriptHandlerFactory, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add verb="GET" path="ScriptResource.axd" type="Microsoft.Web.Handlers.ScriptResourceHandler" validate="false"/>

</httpHandlers>

 

<httpModules>

<add name="WebResourceCompression" type="Microsoft.Web.Handlers.WebResourceCompressionModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add name="ScriptModule" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</httpModules>

 

<authentication mode="Forms">

<forms loginUrl="default.aspx" name="UserIdAutenticado" timeout="120"></forms>

</authentication>

 

</system.web>

 

<!--

The microsoft.web section defines items required for the Atlas framework.

-->

<microsoft.web>

<scripting>

<webServices>

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

<!--

<jsonSerialization maxJsonLength="500">

<converters>

<add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>

</converters>

</jsonSerialization>

-->

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

<!--

<authenticationService enabled="true" requireSSL = "true|false"/>

-->

 

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

and modified in Atlas applications, you need to add each property name to the setProperties and

getProperties attributes. -->

<!--

<profileService enabled="true"

readAccessProperties="propertyname1,propertyname2"

writeAccessProperties="propertyname1,propertyname2" />

-->

</webServices>

</scripting>

</microsoft.web>

 

<system.webServer>

<validation validateIntegratedModeConfiguration="false"/>

<modules>

<add name="ScriptModule" preCondition="integratedMode" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</modules>

<handlers>

<remove name="WebServiceHandlerFactory-ISAPI-2.0"/>

<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"

type="Microsoft.Web.Script.Services.ScriptHandlerFactory, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add name="ScriptResource" verb="GET" path="ScriptResource.axd" type="Microsoft.Web.Handlers.ScriptResourceHandler" />

</handlers>

</system.webServer>

 

<appSettings>

<add key="var_str_direscritorio" value="**************"/>

<add key="var_str_smtp" value="****************"/>

<add key="var_str_urlconfirmacadastro" value="***************************"/>

<add key="Wsemail.WsEmail" value="****************************"/>

</appSettings>

 

<connectionStrings>

<add name="StringMySqlLocal" connectionString="driver={MySQL ODBC 3.51 Driver};server=*****;uid=*******;pwd=****;database=*******"></add>

</connectionStrings>

 

<location path="*********">

<system.web>

<authorization>

<deny users="?"></deny>

<allow users="*"></allow>

</authorization>

<pages theme="*******"/>

</system.web>

</location>

</configuration>

 

Porém quando tento executar qualquer página da minha aplicação ele me retorna o erro:

 

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

 

Compiler Error Message: BC30560: 'ScriptManager' is ambiguous in the namespace 'Microsoft.Web.UI'.

 

Source Error:

 

Line 10: <body>

Line 11: <form id="form1" runat="server">

Line 12: <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering = "true" />

Line 13: <asp:XmlDataSource ID="Ds_menu" runat="server"></asp:XmlDataSource>

Line 14: <div class="cssprincipal" id="divprincipal">

 

Source File: D:\pontonet2.0\advogaweb\admsistema\PaginaPadraoAdministracao.master Line: 12

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bom forum mesmo não tento obtido resposta(s) ontem para o meu post, eu fui tentando e até que consegui fazer o erro abaixo sumir, mas ainda estou com problemas, veja abaixo:

 

Estou tendo problema depois que desinstalei o ATLAS e instalei o AJAX, porque ai os elementos (objetos) que ficam dentro do UpdateProgress ficam sem aparecer na hora de codificar, exemplo: Uma página que tem o ScriptManager e um UpdateProgress, dentro do Update eu coloquei dois elementos, um Label (Label1) e um Button (Button1), ai quero no evento do OnClick do Button1 setar um valor para o Label1, quando eu tento fazer assim Label1.Text o Visual Studio não reconhece o elemento Label1, mas se eu colocar o Label1 para fora do UpdateProgress ai sim eu tenho acesso ao elemento e suas propriedades/eventos, o que pode ser?

 

O que fiz para instalar o AJAX na minha máquina foi:

 

1 - Desinstalei o ATLAS

2 - Instalei o AJAX

3 - Alterei os parametros no webconfig de acordo com o documento de migração.

 

O Pior é que mesmo que eu faça um novo projeto e tente criar uma página como a experiência acima ele retornar o erro de não encontrar o objeto dentro da aplicação, alguém passou por isto? como resolvo?

 

Estou tentando fazer a migração da minha aplicação do Atlas para o Ajax, li o arquivo que o instalador do Ajax manda para migração e fiz as correções, abaixo está o meu webconfig

 

<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

 

<!--

The configSections define a section for ASP.NET Atlas.

-->

<configSections>

<sectionGroup name="microsoft.web" type="Microsoft.Web.Configuration.MicrosoftWebSectionGroup, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

<sectionGroup name="scripting" type="Microsoft.Web.Configuration.ScriptingSectionGroup, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

<sectionGroup name="webServices" type="Microsoft.Web.Configuration.ScriptingWebServicesSectionGroup, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

<section name="jsonSerialization" type="Microsoft.Web.Configuration.ScriptingJsonSerializationSection, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />

<section name="profileService" type="Microsoft.Web.Configuration.ScriptingProfileServiceSection, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />

<section name="authenticationService" type="Microsoft.Web.Configuration.ScriptingAuthenticationServiceSection, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" />

</sectionGroup>

</sectionGroup>

</sectionGroup>

</configSections>

 

<system.web>

<pages>

<controls>

<add tagPrefix="asp" namespace="Microsoft.Web.UI" assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagPrefix="asp" namespace="Microsoft.Web.UI.Controls" assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</controls>

<tagMapping>

<add tagType="System.Web.UI.WebControls.CompareValidator" mappedTagType="Microsoft.Web.UI.Compatibility.CompareValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.CustomValidator" mappedTagType="Microsoft.Web.UI.Compatibility.CustomValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.RangeValidator" mappedTagType="Microsoft.Web.UI.Compatibility.RangeValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.RegularExpressionValidator" mappedTagType="Microsoft.Web.UI.Compatibility.RegularExpressionValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.RequiredFieldValidator" mappedTagType="Microsoft.Web.UI.Compatibility.RequiredFieldValidator, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add tagType="System.Web.UI.WebControls.ValidationSummary" mappedTagType="Microsoft.Web.UI.Compatibility.ValidationSummary, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</tagMapping>

 

<namespaces>

<clear/>

<add namespace="System"/>

<add namespace="System.Collections"/>

<add namespace="System.Collections.Specialized"/>

<add namespace="System.Configuration"/>

<add namespace="System.Text"/>

<add namespace="System.Text.RegularExpressions"/>

<add namespace="System.Web"/>

<add namespace="System.Web.Caching"/>

<add namespace="System.Web.SessionState"/>

<add namespace="System.Web.Security"/>

<add namespace="System.Web.Profile"/>

<add namespace="System.Web.UI"/>

<add namespace="System.Web.UI.WebControls"/>

<add namespace="System.Web.UI.WebControls.WebParts"/>

<add namespace="System.Web.UI.HtmlControls"/>

</namespaces>

</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.

 

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<globalization culture="pt-BR" uiCulture="pt-BR"/>

<compilation debug="true" strict="false" explicit="true">

<assemblies>

<add assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="Microsoft.Build.Utilities, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

<add assembly="Microsoft.Build.Framework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

</assemblies>

</compilation>

 

<httpHandlers>

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

<add verb="*" path="*.asmx" validate="false" type="Microsoft.Web.Script.Services.ScriptHandlerFactory, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add verb="GET" path="ScriptResource.axd" type="Microsoft.Web.Handlers.ScriptResourceHandler" validate="false"/>

</httpHandlers>

 

<httpModules>

<add name="WebResourceCompression" type="Microsoft.Web.Handlers.WebResourceCompressionModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add name="ScriptModule" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</httpModules>

 

<authentication mode="Forms">

<forms loginUrl="default.aspx" name="UserIdAutenticado" timeout="120"></forms>

</authentication>

 

</system.web>

 

<!--

The microsoft.web section defines items required for the Atlas framework.

-->

<microsoft.web>

<scripting>

<webServices>

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

<!--

<jsonSerialization maxJsonLength="500">

<converters>

<add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>

</converters>

</jsonSerialization>

-->

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

<!--

<authenticationService enabled="true" requireSSL = "true|false"/>

-->

 

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

and modified in Atlas applications, you need to add each property name to the setProperties and

getProperties attributes. -->

<!--

<profileService enabled="true"

readAccessProperties="propertyname1,propertyname2"

writeAccessProperties="propertyname1,propertyname2" />

-->

</webServices>

</scripting>

</microsoft.web>

 

<system.webServer>

<validation validateIntegratedModeConfiguration="false"/>

<modules>

<add name="ScriptModule" preCondition="integratedMode" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</modules>

<handlers>

<remove name="WebServiceHandlerFactory-ISAPI-2.0"/>

<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"

type="Microsoft.Web.Script.Services.ScriptHandlerFactory, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add name="ScriptResource" verb="GET" path="ScriptResource.axd" type="Microsoft.Web.Handlers.ScriptResourceHandler" />

</handlers>

</system.webServer>

 

<appSettings>

<add key="var_str_direscritorio" value="**************"/>

<add key="var_str_smtp" value="****************"/>

<add key="var_str_urlconfirmacadastro" value="***************************"/>

<add key="Wsemail.WsEmail" value="****************************"/>

</appSettings>

 

<connectionStrings>

<add name="StringMySqlLocal" connectionString="driver={MySQL ODBC 3.51 Driver};server=*****;uid=*******;pwd=****;database=*******"></add>

</connectionStrings>

 

<location path="*********">

<system.web>

<authorization>

<deny users="?"></deny>

<allow users="*"></allow>

</authorization>

<pages theme="*******"/>

</system.web>

</location>

</configuration>

 

Porém quando tento executar qualquer página da minha aplicação ele me retorna o erro:

 

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

 

Compiler Error Message: BC30560: 'ScriptManager' is ambiguous in the namespace 'Microsoft.Web.UI'.

 

Source Error:

 

Line 10: <body>

Line 11: <form id="form1" runat="server">

Line 12: <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering = "true" />

Line 13: <asp:XmlDataSource ID="Ds_menu" runat="server"></asp:XmlDataSource>

Line 14: <div class="cssprincipal" id="divprincipal">

 

Source File: D:\pontonet2.0\advogaweb\admsistema\PaginaPadraoAdministracao.master Line: 12

Compartilhar este post


Link para o post
Compartilhar em outros sites

A quem interessar possa.Para solucionar o problema eu fiz assim:1 - Desinstalei o Visual WebDeveloper 2005 Express2 - Instalei novamente3 - Desinstalei o AJAX4 - Instalei novamente e ai sim funcionou sem problema.Ainda não testei no projeto antigo para saber da migração, mas se for fazer um sistema ai sim funciona tranquilo, amanhã eu post a tentativa de migração no sistema antes feito no Atlas.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Opa, poderia me dizer a diferença de atlas para o ajax ? ainda estou estudando .net, pelo que li o atlas seria um ajax da microsoft, qual a diferença entre eles ?flw!

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bom a diferença é apenas no nome, Atlas era o Codinome enquanto estava sendo desenvolvido, agora chama-se AJAX porque o desenvolvimento foi finalizado. Mas você deve migrar para o AJAXpara poder ter as correções de erros, implementações de novidades.

Opa, poderia me dizer a diferença de atlas para o ajax ? ainda estou estudando .net, pelo que li o atlas seria um ajax da microsoft, qual a diferença entre eles ?flw!

Compartilhar este post


Link para o post
Compartilhar em outros sites

Ontem eu consegui fazer a instalação, para os novos aplicativos consigo desenvolver sem problema, mas o meu grande problema é migrar os sistemas antigos. O primeiro erro que acontece é que todos os controles que tem <asp:.... (calendar, label, textbox, button, updateprogress) ficam sublinhados em vermelho, outro erro é que quando tento executar a aplicação ele gera o erro abaixo:

 

Unrecognized atribute 'Type', a linha do erro é:

 

<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tentei novamente e percebi que quando rodo a aplicação pelo Visual Studio ele funciona tranquilo, mas quando tento pelo IIS ele gera o erro, estou preocupado pois estou em dúvida se quando enviar a aplicação para o servidor vai dar o mesmo erro?

Compartilhar este post


Link para o post
Compartilhar em outros sites

Fala sério, esse fórum do iMasters está decaindo a cada dia, as seções do site não tem atualização na parte de .net, fazendo isso um fórum pobre aonde ninguém responde, sinto muito dizer isso mas é a verdade, tirar dúvida aqui é um desafio, único que vejo respondendo é o Juliano..

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.