Search

You searched for the word(s): userid:741008

Matching Posts

  • Re: web.config error

    Hi, The error message means that there are 2 connection string named 'cahceConnection' in connectionStrings collection. You also can remove the old one from the collection and add this new one. For example: <connectionStrings> <remove name="cahceConnection" /> <add name="cahceConnection" connectionString="Data Source=Server1;Initial Catalog=dbname;User ID=abc;Password=abc" providerName="System.Data.SqlClient"/> </connectionStrings>
  • Re: 2 web.config error

    Hi, The error message relates to connection string. Were the product data and user data saved in same database? If they were in same database and using same connection string, it should work in admin folder. Please also check the page in the admin folder didn't hard code connection string in code. I look forward to receiving your test results.
  • Re: Hosting in Localhost

    Hi, To better understand the issue, please post exact error message here. When we want to deploy a website to server, we can precompile this website or xcopy the website files to the virtual directory on IIS, and then configure it, such as ASP.NET version etc. For more information, see Deploying ASP.NET Applications ( http://aspalliance.com/1464_Deploying_ASPNET_Applications.all). In addition, a log will be very useful for the trouble-shooting. We can consider the Windows Event Viewer or IIS logs
  • Re: Image Redirecting

    Hi, If you want to use the Image that exists in another website, you need to know the URL of the image and use it in your website. For example: <img src="http://newsite.com/xxx.jpeg" /> By doing so, the client browser will request this image from http://newsite.com . I look forward to receiving your test results.
  • Re: Debug web service in web application project

    Hi, Did you mean that your web services use your web application's web.config? Since the web services applications are in separate project and they will use their own web.config and xml file. Please make sure you modify the right web.config. If I misunderstood you, please clarify the issue and post the step to reproduce the issue. I look forward to receiving your test results.
  • Re: About Compilation Error and Development Server

    Hi, The "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE /reference:" is command line used to compile your project and it is not warning message. The warning message is in Warning tab of Error List window. If you want to use Local IIS instead of ASP.NET Development server for your ASP.NET web application, you can configure it in Web application's Properties Page (Enable "Use Local IIS Web server"
  • Re: Uploading (copying) Database files to Server

    Hi, The inaccurate web.config file might cause such issue. Please make sure there is not error in your web.config file. Is this issue happening in every page or just some page? Sometimes, the incorrect database connection string can cause this issue even though we set customErrors mode to "Off". So we need to make sure it is correct. To test whether connection string causes this issue, we can request a simple page without retrieving data from database. I look forward to receiving your test
  • Re: Adding properties with StateManagedCollection, IList

    Hi, From your description, I understand that you created custom usercontrol and its property was not show in Visual Studio IDE, right? If so, please try to use [Browsable(true)] public int IntProperty { get; set; } I look forward to receiving your test results.
    Posted to Visual Studio 2008 (Forum) by Thomas Sun – MSFT on 11/27/2009
  • Re: DataBinding: 'System.Data.Common.DataRecordInternal' does not contain a property with the name

    Hi, The error message indicates that there is not such field in current SqlDataReader object. Could you please post your select statement and where your datareader is used here? Was that field dbnull value? I look forward to receiving your test results.
  • Re: Cannot view the .aspx page ! (Runtime Error)

    Hi, If we create a simple ASP.NET website without Ajax-enabled, does it have the same issue on server? We need to narrow down the issue. The inaccurate web.config file might cause such issue. Please make sure there is not error in your web.config file. In your case, please make sure the Ajax-Related configuration is correct in your web.config and your server can support the Ajax you used. You can confirm this by contacting your host company. I look forward to receiving your test results.
Page 1 of 516 (5158 items) 1 2 3 4 5 Next > ... Last »