Search

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

Matching Posts

  • Re: Testing the Type of an Object in VB

    Hi, using this online code converter: http://converter.telerik.com/ i got this: Dim myParentObject As New ParentObject() Dim myDerivedObject As New DerivedObject() If TypeOf myDerivedObject Is DerivedObject Then 'do something End If Any doubt, post your comment.
    Posted to Web Forms (Forum) by Segundo on 11/10/2009
  • Re: looking for a very simple time picker control

    Hi, Here is other option: http://www.eworldui.net/CustomControls/TimePicker.aspx Regards,
    Posted to Web Forms (Forum) by Segundo on 10/31/2009
  • Re: problem with vb to c#

    Hi, the code you are showing is not vb nor c#, it is html, and it is indicating a javascript code snippet: <script type="text/javascript"> //some javascript code goes here </script> Please tell us you are trying to do and we will help you. Regards.
    Posted to C# (Forum) by Segundo on 10/23/2009
  • Re: Registering controls in webconfig - designer issue

    Hi, Only compile the entire project and the error will disappear. If this action doesn't solve your problem, close the page that contains the user control and reopen it... sometimes this action is needful in order the project be refreshed. If this solution doesn't solve your problem, close visual studio and reopen it... sometimes this action is needful in order the project be refreshed. Any doubt, post your comment.
    Posted to Web Forms (Forum) by Segundo on 10/21/2009
  • Re: DropDownList SelectedValue page redirect

    Hi, is correct this line? Protected Sub DropDownList2_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DropDownList2.SelectedIndexChanged Select Case DropDownList1 .SelectedValue shouldn't be DropDownList2 ? Any doubt, post your comment.
    Posted to Web Forms (Forum) by Segundo on 10/21/2009
  • Re: convert html table into PDF File

    Hi, Please check this link: http://somewebguy.wordpress.com/2009/05/08/itextsharp-simplify-your-html-to-pdf-creation/ Any doubt, post your comment.
    Posted to Web Forms (Forum) by Segundo on 10/21/2009
  • Re: get the value of textbox on his keypress

    Hi, try this: <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> <script type="text/javascript"> function requiredValue(value) { var string = value.charAt(value.length-1); alert(string); } </script> </head> <body> <form id="form1" runat="server"> <asp:textbox id="email" runat="server" onkeyup="requiredValue(this.value)" MaxLength
    Posted to Web Forms (Forum) by Segundo on 10/21/2009
  • Re: collecting email address from user input textbox

    Hi, You should drag & drop 4 textboxes ( TextBox1, TextBox2, TextBox3, TextBox4 ) to the aspx page and after that You can modify this code: message.From = new MailAddress(TextBox1.Text); message.To.Add(new MailAddress(TextBox2.Text)); message.Subject = TextBox3.Text; message.Body = TextBox4.Text; Where TextBox1 and TextBox2 are controls where you should enter some email... TextBox3 is a control where you should enter the email subject... TextBox4 is a control where you should enter the email
    Posted to Getting Started (Forum) by Segundo on 10/20/2009
  • Re: How can we set same URL for multi aspx page?

    Hi, Use frames, this is a sample: <html> <head> <title>Knowledge Base</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset rows="85,*" frameborder="NO" border="0" framespacing="0"> <frame src="index.htm" name="topFrame" scrolling="NO" noresize> <frame src="Main.aspx" name="mainFrame"> <
    Posted to Web Forms (Forum) by Segundo on 10/20/2009
  • Re: DropDown List Setting Selected Value

    Hi, to set the selected value of the dropdownlist, use this: DdFileFolder.SelectedIndex = DdFileFolder.Items.IndexOf(DdFileFolder.Items.FindByValue(_companyId.ToString())); Any doubt, post your comment.
    Posted to Web Forms (Forum) by Segundo on 10/19/2009
Page 1 of 70 (691 items) 1 2 3 4 5 Next > ... Last »