I made c# asp.net web form application with visual studio 2008 with oracle 10g database using Oracle.DataAccess. When I start debugging or start withoutdebuggin from visual studio, it workd fine. (visual studio and oracle 10g server and client are installed in my pc). I publish the application and use ftp to upload it into the web server (free shared asp.net hosting site). When I go to the url, the application's first page appeared. but, when I click Select(which select information from DB) button on the application, gives me error. ("Oops! This link appears to be broken.")
If the error tells me what's wrong with apps, then I can try to fix the problem, however, I have no idea what's wrong with apps by "Oops! This link appears to be broken."....
Does anyone tells me how to see the actual error message? or any guess what's wrong with the application?
string MyDB = "Data Source=(DESCRIPTION="
+ "(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=Mymydomain.com)(PORT=1521)))"
+ "(CONNECT_DATA=(SERVER= )(SERVICE_NAME=MyDB)));"
+ "User Id=demo;Password=demo;";
OracleConnection conn = new OracleConnection(DB101);
conn.ConnectionString = DB101;
Regards