Search

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

Matching Posts

  • Re: how to fire a image button click event using javascript

    I realize this is an old post, but I wanted to save somebody else a bit of time. I am not sure what the original poster was doing, but the javascript they posted worked fine for me. My solution is very basic: Javascript: function updatePanelPostback(event, ctlName) { var len = document.getElementById(ctlName.id).value.length; if (len == 10) { var imgButton = document.getElementById("<%=upHiddenPostback.ClientID%>"); imgButton.click(); } } Button Declaration: <asp:Button ID="upHiddenPostback"
    Posted to Web Forms (Forum) by ckincincy on 6/1/2009
  • Re: Negative points for the parrots?

    [quote user="Mikesdotnetting"]I suppose that's possible, but what on earth would be the point? [/quote] I don't know what their point for doing that is, but still the parroting is something I'd like to see dealt with. Just silly to see. Moving on, I've said my piece.
    Posted to Feedback on this website (Forum) by ckincincy on 12/31/2008
  • Re: Negative points for the parrots?

    OK, I sent a private message to Naom, and I misunderstood her original message. She thinks that there is a user here, that is in fact multiple people behind the screen name. Not that a person has multiple screen names. I'd tend to agree. Which leads me back to what started this post. I think there needs to be a way to mark people as parrots and such, because they are parroting to get points.. kind of annoying. Report as abuse is not the answer, it isn't really abuse... just stupidity. What
    Posted to Feedback on this website (Forum) by ckincincy on 12/31/2008
  • Re: Negative points for the parrots?

    How kind of you Rob. Though, just to put one more dagger in this topic... http://www.ocdprogrammer.com/image.axd?picture=wearedifferent.jpg I'm on the left by the Kia, he's on the right... compensating for things he is lacking with his big truck. So lets hope this is now put to rest.
    Posted to Feedback on this website (Forum) by ckincincy on 12/31/2008
  • Re: Negative points for the parrots?

    [quote user="SGWellens"]I noticed that "I am a PC" and I am a PC 2" have the same IP address.[/quote] As would make sense... considering he works about 4 feet from me. We car pool in together because we live 6 or so miles from each other. But all is well, we are in fact two different people. Me: http://www.ocdprogrammer.com/ http://www.linkedin.com/in/clarenceklopfstein Him: http://www.rampidbyter.com/ http://www.linkedin.com/in/roblindley http://astraltd.com/
    Posted to Feedback on this website (Forum) by ckincincy on 12/31/2008
  • Re: send email to multiple recipents

    However, one should never To.Add that many people. To.Add means that all emails are visible to everybody on the list. If the emails need to be private you should BCC.Add.
    Posted to Web Forms (Forum) by ckincincy on 12/29/2008
  • Re: send email to multiple recipents

    No problem, I just gave you code to xoro's answer.
    Posted to Web Forms (Forum) by ckincincy on 12/29/2008
  • Re: Can't update avatar.

    Mine finally took.
    Posted to Feedback on this website (Forum) by ckincincy on 12/29/2008
  • Re: select command where statements

    The problem with parametized commands here is that there are multiple 'dept's. To the original poster, how would you get the list of departments to check?
  • Re: send email to multiple recipents

    The last suggestion should work for you. string useremails = "me@example.com, me1@example.com"; // You'd make this variable equal to whatever control your user is using. string[] emails = useremails.Split(','); MailMessage msg = new MailMessage(); foreach(string email in emails) { msg.To.Add(new MailAddress(email)); }
    Posted to Web Forms (Forum) by ckincincy on 12/28/2008
Page 1 of 13 (126 items) 1 2 3 4 5 Next > ... Last »