Search

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

Matching Posts

  • Re: Multiple saves to db before sending multiple emails

    Thanks for your help Mike, much appreciated. I was thinking of forcing the user to create a campaign first and then using that id in combination with the recipients email address for the tracking. As you stated above this would be only 2 database operations instead of 1500.
    Posted to Getting Started (Forum) by tmargot on 8/19/2009
  • Re: Multiple saves to db before sending multiple emails

    The email sent out has a tracking image which the primary key of the email sent (retrieved from database write just before the email is sent). When the user opens the email that primary key is passed and it is flagged as read. The recipients of these emails are already added to the system. What I am saving to the database simply a record of the individual email that has been sent, so I can retrieve a primary key, add to contents of email for the tracking of it being opened. I am using an MS SQL Server
    Posted to Getting Started (Forum) by tmargot on 8/18/2009
  • Multiple saves to db before sending multiple emails

    Hi, I am creating a simple backend that will enable our client to add a number of recipients that have been added to the system and send emails to all of them. There could be up to 1500 recipients added at a time. The recipients selected are added to a dataset. When the user clicks send, I write a record/insert the send to the database, retrieve the primary key of the newly inserted record to append to the tracking image url in the email content, then send out the email. Should I be worried about
    Posted to Getting Started (Forum) by tmargot on 8/17/2009
    Filed under: multiple db inserts and email send
  • Re: GridView Bound to DataSet with Paging and index out of range error

    Hi Alessandro, Thanks for you reply. I decided to take a slightly different approach which works perfectly for me. Here is my solution: I passed the primary key via the CommandArgument property My ASPX templatefield from Gridview: <asp:TemplateField><ItemTemplate><asp:Button ID="btnAdd" runat="server" Text="Button" CommandName="Add" CommandArgument='<%#Eval("pk_Rec_Id") %>' /></ItemTemplate></asp:TemplateField>
    Posted to Data Presentation Controls (Forum) by tmargot on 7/27/2009
    Filed under: CommandArgument RowCommand Primary Key Button LinkButton
  • Re: Instantiating Custom Class files in ASP.NET Code-behind files Newbie Question

    Thanks Paul, I will give that a go tonight. Will the current App_Code folder I have work fine? Cheers, Tris
    Posted to C# (Forum) by tmargot on 7/27/2009
  • Re: Instantiating Custom Class files in ASP.NET Code-behind files Newbie Question

    Paul everything is now working. Thanks so much for your help! Watch out OOP, here I come!
    Posted to C# (Forum) by tmargot on 7/27/2009
  • Re: Instantiating Custom Class files in ASP.NET Code-behind files Newbie Question

    Hi again, I created a brand new project for this test, so enverything is in this single project. One thing I thought of is in Visual Studio 2008 I try creating an App_Code folder by right-clicking on my project title in the solution explorer, selecting Add ASP.NET Folder, but there is no App_Code folder. So just created a normal folder named App_Code. It seems to be correct as the folder as can be seen in the previous screenshot it has a different icon to a standard folder. I have uploaded my project
    Posted to C# (Forum) by tmargot on 7/26/2009
  • Re: Google Maps not working

    After looking at many solution on registering google's javascript with ASP.NET I cheated and put the map into a standard HTML file and placed an iFrame on the asp.net page with the map.html file loaded into it.
    Posted to Component Discussions (Forum) by tmargot on 7/26/2009
  • GridView Bound to DataSet with Paging and index out of range error

    Hi there, I have searched the web for 5 days and found numerous posts in this forum regarding the problem and I still cannot figure mine out. I have a DataGrid that is bound to a DataSet with paging enabled and I keep getting an "index out of range error" when click on page 2. The DataGrid has a button on each row to add row details to another DataSet Table based on the primary key. As can be seen in my code behind file, I tried using an if statement to filter the e.CommandName to no success
    Posted to Data Presentation Controls (Forum) by tmargot on 7/26/2009
    Filed under: gridview dataset paging index out of range
  • Re: When to Response.Redirect after database insert or smtp email send?

    Thanks everyone for your answers. All very good options. I am going to do some testing. Thanks again, Tris
    Posted to Getting Started (Forum) by tmargot on 7/26/2009
Page 1 of 3 (21 items) 1 2 3 Next >