Search

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

Matching Posts

  • Video Player

    Hi, I am very new with videos, but how would I make a website like youtube, upload videos, convert to flv, and how would I make a player instead of saying YouTube, saying MyWebsite. Thank you!!!!
    Posted to Free For All (Forum) by asdf fdsa on 8/19/2009
  • Re: ItemCommand not firing in Internet Explorer

    Thank you!!!! Thank you!!!! Thank you!!!! Thank you!!!! Thank you sooo much!!!!
    Posted to ASP.NET AJAX UI (Forum) by asdf fdsa on 8/12/2009
  • ItemCommand not firing in Internet Explorer

    Hi, I've been stuck on this for a long time, please, someone help me, I'm getting very frustrated. I have a Repeater control and the ItemCommand fires normally in Firefox, but in Internet Explorer, it will only work after clicking on it about 30 times, and that is not good. This is my code: <%@ Page Language="C#" %> <%@ Import Namespace ="System.Data.SqlClient" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3
    Posted to ASP.NET AJAX UI (Forum) by asdf fdsa on 8/9/2009
  • Re: Link button (repeater) event not being called in IE

    Yes, I've set the UpdateMode property of UpdatePanel as ' Conditional' but it still doesn't work. What should I do now?
    Posted to Web Forms (Forum) by asdf fdsa on 7/8/2009
  • Re: Link button (repeater) event not being called in IE

    This is my code: <%@ Page Language="C#" %> <%@ Import Namespace ="System.Data.SqlClient" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { } string mssge; protected void Timer1_Tick(object sender, EventArgs e) { string strConnectionString = ConfigurationManager.ConnectionStrings
    Posted to Web Forms (Forum) by asdf fdsa on 7/7/2009
  • Re: Link button (repeater) event not being called in IE

    Hi, the click event of the button already fired, but even after the change, the ItemCommand event still doesn't fire, I still have to click about 20 - 30 times to fire. What should I do? Thank you!!!!
    Posted to Web Forms (Forum) by asdf fdsa on 7/7/2009
  • Re: Link button (repeater) event not being called in IE

    Hi, thank you for your responses!!!! But I need the < asp : AsyncPostBackTrigger ControlID ="Timer1" EventName ="Tick" /> and I also need a session variable instead of an int variable, I tried changing from commandname to commandargument, but it is still the same in IE. What should I do? Thank you!!!!
    Posted to Web Forms (Forum) by asdf fdsa on 7/2/2009
  • If in sql

    Hi, I was trying to make an if statement in sql server 2005, I tried this: IF SELECT Message FROM Chat WHERE PersonEmail = @PersonEmail IS NULL BEGIN INSERT INTO Chat ( Message , PersonEmail , FriendEmail ) VALUES ( @Message , @PersonEmail , @FriendEmail ) END IF SELECT Message FROM Chat WHERE PersonEmail = @PersonEmail IS NOT NULL BEGIN UPDATE Message = Message + @PartMessage WHERE PersonEmail = @PersonEmail END But it didn't work, can someone help me? Thank you!!!!
  • Re: If in sql

    Hi, this really helped, now I tried this: IF EXISTS (SELECT Message FROM Chat WHERE PersonEmail=@PersonEmail AND FriendEmail=@FriendEmail) BEGIN UPDATE Chat SET Message = Message + ' ' + @Message WHERE PersonEmail=@PersonEmail AND FriendEmail=@FriendEmail OR PersonEmail=@FriendEmail AND FriendEmail=@PersonEmail END ELSE BEGIN INSERT INTO Chat (Message, PersonEmail, FriendEmail) VALUES (@Message, @FriendEmail, @PersonEmail; INSERT INTO Chat (Message, PersonEmail, FriendEmail) VALUES (@Message
  • Re: If in sql

    Thank you both so much, it worked!!!!
Page 1 of 12 (120 items) 1 2 3 4 5 Next > ... Last »