Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. darylbewise

    outputcache with ajax

    Hello All, I am adding output cache to a few usercontrols within my website that have quite a few database calls. I have added the following into the uc: <%@ OutputCache Duration="100000" VaryByParam="none"%> All works fine with the caching, except when I come to click a button that will...
  2. darylbewise

    load-balancing session usage

    I am in the process of moving from a single server solution to a load balancing solution. Once of the websites that will be located on the server makes use of asp.net in-process sessions. I am looking for peoples opinion on the best way to go about making the required alterations to how the...
  3. darylbewise

    processing feeds: most efficient way?

    I am trying to create a feed (csv, txt etc) processor that will do the following: 1. Run through each feed line by line 2. Make any required alterations to the values located within the feeds (if required at all) 3. Save each line in turn into a MS SQL database The first two points above work...
  4. darylbewise

    update tables from .sql file

    Hello all, If this is the wrong place to be posting such a question, I am sorry. I have just swapped servers from a single server solution which worked with MSSQL Express edition to a Master-slave solution which uses MSSQL Workgroup. I need to update certain database tables on a daily basis...
  5. darylbewise

    max_user_connections

    I am using ASP.net to connect to a MySQL database. I think this is a MySQL problem rarther that ASP.net. Please let me know if I have posted in the wrong forum. This is the first time I have encountered this error: Error: Exception information: Exception type: MySqlException...
  6. darylbewise

    Most efficient way to update large MSSQL database using c#

    I have a MS SQL database table with around 500,000 rows. Each day, this table is updated using a csv file. Currently I have been looping round each row within the CSV file to check to see if the row that it matches within the database has changed. If this has changed I will make a UPDATE sql...
  7. darylbewise

    c# how to process soap response

    Hi All, I have the following code that sends a soap request to a web service and receives a soap response back, void HttpSOAPRequest(String xmlfile, string proxy) { XmlDocument doc = new XmlDocument(); doc.Load(Server.MapPath(xmlfile)); HttpWebRequest req =...
  8. darylbewise

    update panel updating

    Hello all, Im trying to get an update panel to update while I am executin a large process. If I can output to the screen, I will know exactly where the process is up to. For example: //.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>...
  9. darylbewise

    csv parse issue with commas

    Hi all, I have built a CSV parser that will convert each line of a csv cod into a string[]. if (File.Exists(path)) { using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read)) { using (StreamReader sr = new StreamReader(fs))...
  10. darylbewise

    Publish mdf database to provider automatically

    Hello all, I’m looking to be able to create a script of a .MDF database (data + schema) automatically using c# code. What I want to be able to do is create a .sql file of all the data in a .mdf database (exactly what you can do using the “Publish to provider” tool in Visual Studio. Any...
  11. darylbewise

    save dropdown vale on masterpage

    I am looking to save the value of a dropdown box which is located on a masterpage when I flip between other pages that use the masterpage. For example, all my masterpage contains is a dropdown box with a few items: <asp:DropDownList ID="DropDownList1" runat="server">...

Part and Inventory Search

Back
Top