Search

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

Matching Posts

  • Re: Radiobuttonlist Image Setting

    I know ot was too late then, but somebody might be looking for the same solution. Maybe you could try this solution. <asp:RadioButtonList id="RadioButtonList1" runat="server"> <asp:ListItem > <%# "<img src=\"/pic_directory_here/" + fixpicture(Container.DataItem("pic_name_here").ToString()) + "\"" %> </asp:ListItem> </asp:RadioButtonList>
    Posted to Web Forms (Forum) by chope_07 on 8/17/2009
    Filed under: RadioButtonList, Radiobuttonlist with Image
  • Re: Email Question: How do put sender's name in the FROM field?

    If you also want to have something like this: mail.From = new MailAddress("you@yourcompany.com", "Your Name"); mail.ReplyTo = new MailAddress("new@yourcompany.com"); Code above means the the message that will be sent will be having a different recipient if they reply to the message you have sent. If they reply to the message sent by you@yourcompany.com, their message will be sent to new@yourcompany.com.
    Posted to Web Forms (Forum) by chope_07 on 5/15/2009
    Filed under: mail, mailmessage
  • Re: Email Question: How do put sender's name in the FROM field?

    Since this issue was posted 5 years ago, I think you already solved your problem. For those new in asp.net and interested in this topic I hope this may help you. You can try using this. mail.From = new MailAddress("you@yourcompany.com", "Your Name");
    Posted to Web Forms (Forum) by chope_07 on 5/15/2009
    Filed under: mail, mailmessage
  • Re: getting rid of the calendar control tooltip

    [quote user="BasicDatePicker"]Hi mattm1999, The ToolTip property maps to the "title" attribute on the calendars parent <table> tag. Obviously they (MS) put some code in there somewhere which defaults the property to "Calendar" when the ToolTip property is not set. Not really sure why they would do that, but it's there. As you noted, setting the ToolTip property to string.Empty or " " does not fix the problem, but there is a workaround. You can override
    Posted to Web Forms (Forum) by chope_07 on 4/29/2009
  • Re: ASP.NET 2.0 - Enter Key - Default Submit Button

    Hi, Try using this, Assuming that we have asp TextBox with an ID of "TextBox1" and Button with an ID of "Button1" controls on our page. Put this code on the Head of your aspx page. <script language="javascript"> function doClick(e, buttonid){ var evt = e ? e : window.event; var bt = document.getElementById(buttonid); if (bt){ if (evt.keyCode == 13){ bt.click(); return false; } } } </script> And this on page load event. TextBox1.Attributes.Add("onkeypress"
    Posted to FAQ - Frequently Asked Questions (Forum) by chope_07 on 4/22/2009
    Filed under: Default Button
  • Re: small doubt

    Yes, JSSK is object oriented. You may see the namespace usage on the code behind of file of every page using the classes which is usually located in App_Code directory of your project.
    Posted to Jobs Site Starter Kit (Forum) by chope_07 on 4/22/2009
    Filed under: jssk
Page 1 of 1 (6 items)