Ir para conteúdo

Arquivado

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

saloeric

Na intranet funciona, no servidor web não

Recommended Posts

boa tarde, fiz uma aplicação em asp.net e testei no meu pc e funciona, quando passei para o servidor deixa de funcionar, penso que seja em relação à base de dados:

 

on error resume nextdim imag1 as stringdim imag2 as stringdim mani as stringdim img1 as stringdim img2 as stringdim img3 as stringdim img4 as stringdim img5 as stringdim img6 as stringdim conexao as oledbconnectiondim meucomando as oledbcommanddim rs as oledbdatareaderdim sql as stringconexao = new oledbconnection("provider=microsoft.jet.oledb.4.0;data source="&server.mappath("..\..\db\casa.mdb"))conexao.open()sql="select * from produtos where id="&request("id")meucomando=new oledbcommand(sql, conexao)rs=meucomando.executereader()rs.read()imag1=rs.item("imagem")imag2=rs.item("imagemgrande")mani=rs.item("manual")img1=rs.item("imagem1")img2=rs.item("imagem2")img3=rs.item("imagem3")img4=rs.item("imagem4")img5=rs.item("imagem5")img6=rs.item("imagem6")conexao.close()

internamente se faço um response.write (imag1) aparece o valor do campo, no servidor não aparece nada

 

 

aguardo ajuda http://forum.imasters.com.br/public/style_emoticons/default/assobiando.gif

Compartilhar este post


Link para o post
Compartilhar em outros sites

esse on error resume nexté pra não mostra erros certo?tenta tirar ele pra mostrar qual o erro ta dando

Compartilhar este post


Link para o post
Compartilhar em outros sites

na intranet se tiro o on error diz-me que a string img1 deve ter algum conteudo, que é nulo e dá erro, mas isto já eu sabia por isso pus o on error no servidor aparece isto:Server Error in '/' Application.--------------------------------------------------------------------------------Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="Off"/> </system.web></configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web></configuration>

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.