Search

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

Matching Posts

  • Re: How can I print multiple ASP.Net Pages from Default.aspx?

    Is it like pages in a paged gridview or contents from multiple files?
    Posted to Getting Started (Forum) by Leyu on 8/22/2008
  • Re: Directory Listing Denied

    Well in that case you can provide a default ASP.NET page which redirects to the error page when only the directory is specified. But that may require you to configure if any default documents are enabled in IIS.
    Posted to Free For All (Forum) by Leyu on 8/21/2008
  • Re: Directory Listing Denied

    You can trap the "403.14 - Directory listing denied" http error code and redirect to custom error page. < configuration > < system.web > < customErrors defaultRedirect= "GenericError.htm" mode= "RemoteOnly" > < error statusCode= "403.14" redirect= "DirListError.htm" /> </ customErrors > </ system.web > </ configuration >
    Posted to Free For All (Forum) by Leyu on 8/20/2008
  • Re: Macking back button

    use the following javascript to do history navigation. <a href="javascript:history.back();">Back</a>
    Posted to Web Forms (Forum) by Leyu on 8/20/2008
  • Re: how do i make textbox with autocomplete feature

    With Ajax you can satisfy your requirements Ajax AutoComplete Control
    Posted to Web Forms (Forum) by Leyu on 8/15/2008
  • Re: SQL statement help

    [quote user="TBarton"]This is the SQL statement I have tried. cmd3.CommandText = "SELECT * FROM TICKETS WHERE UPDATEDON => " & Date .Today [/quote] Constructing a statement like this or using any custom format will be dependant on the locale on the SQL Server. You have two options 1. To use parametrized queries 2. Use the format string which is not culture dependant for your dynamically constructed SQL Date.Today.ToString( "yyyyMMdd HH:mm:ss" );
  • Re: validation in javascript for comparison of dates in dropdownlist?

    [quote user="pavankumarkavety"] < asp : CompareValidator ID ="cmpvaldate" runat ="server" ControlToCompare ="drpdnto" ControlToValidate ="drpdnfrom" ErrorMessage ="X" Operator ="LessThan" ValueToCompare ="Date"></ asp : CompareValidator > [/quote] The problem I am seeing is with the ValueToCompare property you don't need to set this instead set the Type property to "Date" and everything should
    Posted to Web Forms (Forum) by Leyu on 8/11/2008
  • Re: Question about textboxes

    I guess this http://forums.asp.net/t/1302044.aspx addresses your issue
    Posted to Web Forms (Forum) by Leyu on 8/8/2008
  • Re: SQL most recent date problem

    dhassen why don't you just make an Inner join with the Table_pupils and see what comes up... SELECT Table_Pupils.pupilID, Table_Pupils.pupil_Name, Table_Marks.* FROM Table_Marks INNER JOIN ( SELECT mark_Pupil, mark_subject, MAX (mark_date) AS MaxDate FROM Table_Marks GROUP BY mark_Pupil, mark_subject) Table_Marks2 ON Table_Marks.mark_Pupil = Table_Marks2.mark_Pupil AND Table_Marks.mark_subject = Table_Marks2.mark_subject AND Table_Marks.mark_date = Table_Marks2.MaxDate INNER JOIN Table_Pupils
  • Re: how to call customvalidator on text change event

    As I told the complete solution would be to use a timer which would will be set when the onkeydown event of the <input type=text> element is fired and allowing the user to enter some value by allowing a duration of 2-3 seconds and then submitting the form again using the __doPostBack Client side script. But as a quick solution which only accepts one character to be evaluated you can use this and extend it to your needs... txtNumber.Attributes.Add( "onkeyup" , "__doPostBack('"
    Posted to Web Forms (Forum) by Leyu on 8/8/2008
Page 1 of 2 (18 items) 1 2 Next >