Search

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

Matching Posts

  • Re: Resend email

    Thanks. I don't have access to the email server but will pass this on to the network administrator who I am working with on this problem. We are not sure if the resolution lies in my SSIS package or with the email server.
  • Resend email

    I have two packages that send notification emails. Last night our email server was down, and although the programs ran fine no emails were received. My logs show the send mail task was completed. Is there any way to check for an error message coming back from the email server?
  • Re: Resend email

    Am using SMTP. Not quite sure what you mean by IntentPut folder. Is it on the email server?
  • Re: Login Control works in test but not after published to site

    My solution was to remove the aspnetdb.mdf and recreate it a standalone db using a sql express instance on the web server. Then change the connection string to the following: <add name="LocalSqlServer" connectionString="Data Source=localhost;Initial Catalog=dbname;Persist Security Info=True;User ID=username;Password=********" providerName="System.Data.SqlClient"/>
    Posted to Security (Forum) by McGuire on 10/7/2009
  • Re: Login Control works in test but not after published to site

    Thanks for your replies. Still trying to figure this out.
    Posted to Security (Forum) by McGuire on 10/6/2009
  • Login Control works in test but not after published to site

    I am working with the login control that comes with VS08. It works fine on my local test site but when I publish it to the web, users cannot log in. It give the error 'Login attempt was unsuccessful. Please try again'. So it is apparently not able to connect to the db. I am using the aspnetdb.mdf and it gets published with the program to the site in the App_Data folder. I can see it there. My connection string is as follows: <add name="ASPNETDBConnectionString1" connectionString
    Posted to Security (Forum) by McGuire on 10/2/2009
  • Re: Gridview delete record

    This is what is working for me: gridview button and objectdatasource: <asp:ButtonField ButtonType="Button" CommandName="Delete" Text="Delete" ></asp:ButtonField> <asp:ObjectDataSource ID="allUsersDataSource" runat="server" SelectMethod="GetAllUsers" TypeName="System.Web.Security.Membership" OldValuesParameterFormatString="original_{0}" /> code: Partial Class Administration_DeleteUser Inherits System
    Posted to Data Presentation Controls (Forum) by McGuire on 9/29/2009
  • Gridview hidden cell value

    I need to get a value from a hidden cell in a gridview. I use this code in a similar program and it is working fine but when I use it in this program I get the following error: "Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index" Dim gdRow As GridViewRow = gvGridSearch.SelectedRow Dim strID As String = gvGridSearch.DataKeys(gdRow.RowIndex).Values("ID") When I hover over the "gvGridSearch.SelectedRow.RowIndex"
    Posted to Data Presentation Controls (Forum) by McGuire on 9/23/2009
  • Re: Gridview hidden cell value

    Thanks for the help. I was using DataKeys vs. DataKeyNames. It is working fine now.
    Posted to Data Presentation Controls (Forum) by McGuire on 9/23/2009
  • Gridview delete record

    I am using the login contol that comes with Visual Studio 2008. Problem: No matter which way I try to delete a user, I get errors. I have wasted a lot of time with this one. If anyone has any ideas, I would appreciate the help! If I use the DeleteMethod of the ObjectDataSource... <asp:ObjectDataSource ID="allUsersDataSource" runat="server" SelectMethod="GetAllUsers" DeleteMethod="DeleteUser" TypeName="System.Web.Security.Membership" OldValuesParameterFormatString
    Posted to Data Presentation Controls (Forum) by McGuire on 9/9/2009
Page 1 of 15 (147 items) 1 2 3 4 5 Next > ... Last ยป