Search results for query: *

  1. A

    .NET Webservice - Performance testing

    Hi, I am working on a .NET web service. It is deployed on IIS 7.5 (Web server is Windows 2008 R2, 64 bit machine, 8 GB RAM) and it is used to send and receive data between client application and web server. I would like to check the performance of the web service if more people are accessing...
  2. A

    IIS 8.5 - website Settings - Export all the settings to Compare

    Hi, I have been working on an ASP.NET 4.0 website and IIS 8.5 is used to host the website. My website works fine in DEV but it does not work as expected in QA. Some functions are not working as it works in DEV server. I would like to compare the IIS settings between DEV and QA server to...
  3. A

    Disable browser back button - Enable back button after log out

    Hi, I am working on an ASP.NET 4.0 website and I am using IIS 8 to host my website. I want to disable the browser back button so that the users cannot go to the previous page by clicking on the browser back button. If the user logs out of the website and if they want to go to someother...
  4. A

    pdf downloaded from Website is corrupted + Empty doc when opened

    Thanks for your inputs. Issue was with network settings and download works fine after changing the network settings (for Non Compliant HTTP).. Thank you.
  5. A

    pdf downloaded from Website is corrupted + Empty doc when opened

    Hi, our Classic ASP website hosted on IIS 7 on windows 2008 32 bit server. Website allows used to download pdf files from it. When I try to download and open the pdf file i see the message "There was an error opening this document. This file is damaged and could not be repaired." If I copy the...
  6. A

    Integrated windows authentication - ASP.NET MVC app on IIS 7.5

    Hi , We are working on an ASP.NET website. We are using the windows login id of the user to authenticate the users. Now the website is being migrated to ASP.NET MVC5 and we are trying to host on IIS 7.5. Settings done in IIS 6. Under directory security we checked Integrated Windows...
  7. A

    Export excel with dynamic formatting from ASP.NET

    Hi, I am working on an ASP.NET 4.0 website. I want to export data from database to excel 2013 (Xlsx) from the website. I do not want to use Microsoft Interop excel dlls since it requires excel on the webserver. I want to export the data to excel (Xlsx) and format the excel cells dynamically...
  8. A

    List of class objects - Filter class objects with same values using LINQ

    Thanks John, for 4, it works fine if the count ==5. Thanks Ashok
  9. A

    List of class objects - Filter class objects with same values using LINQ

    Hi, I am using a class object (clsDetails) to store the player details as shown below. I am trying to filter a list of Class objects with same values using LINQ. I want to get the list of Players who are successful in all the 5 attempts. I am trying to get the do it using LINQ but it does...
  10. A

    ASP.NET 4.0 website works fine in IE9. But javascript and alignment issue in IE11

    Hi, I am working on a ASP.NET website which is being developed using Visual studio 2010. Target framework is 4.0. Website is hosted on windows 2003 machine running IIS 6. website works fine in IE9 and chrome. But some javascript functions does not work fine when I access the website...
  11. A

    website deployment error - Could not access login page from IIS6

    Hi, I am working on an ASP.NET website. I am trying to deploy the website on Windows 2003 server, IIS 6. The website works fine when I run using Visual studio 2010. but I am not able to deploy on IIS 6 and access the website login page. I published the website and created a new Virtual...
  12. A

    Redirect logout page if session has expired and link to Login again

    Hi , I am working on a ASP.NET website. I am redirecting the users to logout page if the session has expired. In the page load of Logout page, I am clearing all the session variables. I want to redirect the users to login page from logout page on click on a link. I am checking...
  13. A

    Data table bulk insert - Does not store accented characters properly

    thanks for your reply. The issue seems to occur while reading the csv file into data table before bulk insert. I included the encoding parameter while reading the csv file. (Encoding.Default) and it loads the french text properly and it gets stored in SQL DB without any issues. old code: List...
  14. A

    Data table bulk insert - Does not store accented characters properly

    Hi, I am inserting European language text into nvarchar column in SQL server 2008. The accented characters are not stored properly in the SQL DB. string strData ="Accented chars- Les caract?res accentu?s fran?ais "; DataTable dtTemp =newDataTable()...
Back
Top Bottom