Search

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

Matching Posts

  • ByPass Forms Authentication

    I have a project where I will be authenticating users from two places. One is the new autthentication using the forms authentication built in to ASP.NET 3.5. The second place the users will be coming from is a legacy application where the credientials are passed and need to bypass forms authentication. Then my userobject will determine what content is delivered to the user. I have sucessfully blocked forms authentication using the global.asax file like so... I have one general and one specific question
    Posted to Security (Forum) by JimAmigo on 8/27/2008
  • Re: Image Button Postback

    Ok, I solved the issue using an interim page. Ads.aspx with querystring elements. I changed the image buttons to hyperlinks with images and the target blank directed to my Ads.aspx page. Once the user clicks an ad, the blank new window is opened, loads the ads.aspx page and processs the statistics and then based on the ad clicked redirects to the appropriate ads website. Thanks everyone for your thoughts and ideas on helping me solve this issue. Jim
    Posted to Getting Started (Forum) by JimAmigo on 7/22/2008
  • Re: Image Button Postback

    The interim (MyAdCounter.aspx) page crossed my mind but I thought there might be a less evasive way of doing it without having to go to the interim page. Thanks for your feedback.
    Posted to Getting Started (Forum) by JimAmigo on 7/21/2008
  • Image Button Postback

    I have a image button used to display an AD on a site. Currenlty I use the buttons click event to track the click throughs. But recently I made some changes and the postback of this control causes other issues. Basically a user would click the ad and another website is opened in a child page (for the ad). The problem is the postback caused by the image button changes the parent page. I know I could change this to an image or hyperlink control but I need to perfrom the click though calculation somewhere
    Posted to Getting Started (Forum) by JimAmigo on 7/21/2008
  • Re: Adding double quote to a string

    This also works, but of course is a bit more code. StringBuilder str = new StringBuilder(); string theNumber = "120" ; str.Append( "\""); str.Append(theNumber); str.Append(" \ "" );
    Posted to Getting Started (Forum) by JimAmigo on 7/9/2008
  • Re: Adding double quote to a string

    What if the 120 is a variable needed in the middle of a string? how would that work and get the double quotes within the string?
    Posted to Getting Started (Forum) by JimAmigo on 7/8/2008
  • Re: MS Excel Export Back Button Cache Issue?

    Also, only happens in Internet Explorer..
    Posted to Web Forms (Forum) by JimAmigo on 6/24/2008
  • MS Excel Export Back Button Cache Issue?

    I’m having trouble diagnosing this bug in my application …. I have a webform with four controls; a listbox , a button to run report, a button to export to Excel and a gridview control. The user selects items in the listbox, and then clicks the run report button. This renders the gridview with data on postback. I’m not using ajax. The user can then run the report again by selecting other items in the listbox. NOW HERE is the problem. If the user now clicks the Export to Excel and opens the Excel report
    Posted to Web Forms (Forum) by JimAmigo on 6/24/2008
  • Re: What's wrong with this OracleDataReader?

    I tried doing the same by filling a datatable with the OracleDataAdapter but that didn't work when binding to the datatable either. Anyone have a full example??? I was able to interate over the OracleDataReader and then build a datatable and fill it with the reader results row by row, but that seems like a round about way binding the results returned to a gridview. If this is the case, this means you can use a SQLDataReader as a datasource but CAN'T use a OracleDataReader as a datasource
    Posted to Oracle (Forum) by JimAmigo on 5/1/2008
  • What's wrong with this OracleDataReader?

    I have a method in my DLL.. [DataObjectMethod(DataObjectMethodType.Select)] public static IEnumerable FindStaffMember() { string sel = "SELECT UNIQUEIDENTIFIER, NIHCOMMONGIVENNAME, SN, ORGNAME, PERSONALTITLE, TITLE " + "FROM PERSON" ; OracleCommand cmd = new OracleCommand(sel, new OracleConnection(GetNEDConnectionString())); cmd.CommandType = CommandType.Text; cmd.Connection.Open(); OracleDataReader dr = cmd.ExecuteReader(); return dr; } Then in my codebehind page I have... protected
    Posted to Oracle (Forum) by JimAmigo on 5/1/2008
Page 1 of 26 (251 items) 1 2 3 4 5 Next > ... Last »