Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:763627
More Search Options
RSS Available
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" );
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
Leyu
on 8/15/2008
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
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
Leyu
on 8/8/2008
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 >
WindowsClient:
Build WPF Data Controls for Outlook Addins Easily with VS2010
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 2
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 1
Channel 9:
Channel 9 Live at PDC09: Wei Zhu (Facebook)
WindowsClient:
WPF Manipulation Basics
ASP.NET:
High CPU in .NET app using a static Generic.Dictionary
TechNet Edge:
Deploying Silverlight - Why and How
WindowsClient:
Windows Client Developer Roundup for 12/21/2009
Silverlight:
4 Calendars & Plans for 2010 / 5770
ASP.NET:
ASP.NET MVC 2 and Visual Studio 2010
ASP.NET:
Moving your ASP.NET Application to Windows Azure – Part II
Silverlight:
HVP – Core Scaffolding and Updated News
Channel 9:
TWC9: 2009 - The Year in Review
ASP.NET:
Tip#100: Did you know… How to view ASP.NET trace information?
ASP.NET:
Passing anonymous objects to MVC views and accessing them using dynamic
Channel 9:
Channel 9 Live at PDC09: Coding 4 Fun
Channel 9:
Channel 9 Live at PDC09: Stephen Toub
WindowsClient:
Mouse Gestures for Internet Explorer
Channel 9:
Controlling concurrency in Rx
Channel 9:
Dev Tools Ecosystem Summit Videos Available
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online