No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Re: [QUOTE=-EMAN-]hi .. can any 1 give me "brilliant" idea to do this (Projet ) in ASP.NET [B]An airplane reservation system for an airline. The airline allows a 15% flight overbooking, and passengers who cannot be accommodated are compensated, and rebooked on the next available flight. Also take into account flight … | |
Re: [QUOTE=Young Teck 06]I am kind of having some problems, I asked on dBForums but nobody responded, guess its safe to say... soooo much for their knowledge of knowing things: I have 2 scripts running on my site, one is an ASP.NET Storefront and the other is a database manager (since … | |
Re: [QUOTE=jcmoles] is this possible?If so, can I get an example. Thank you.[/QUOTE] May I ask what language you are using to build your application? The sample code you have provided doesn't look like ASP.NET.....? [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemdrawingprintingprintdocumentclasstopic.asp[/url] | |
Re: [QUOTE=vaisakh]i have 3 dropdownlist for month day and year.i need to validate the date selected.means (feb 31, leapyear)i checked javascript but i cannot do it in this .net environment plz help me[/QUOTE] [B]This is not a solution but if you like to review, I hope this will help you find … | |
Can any one please help me find an sample of screen scrape. I need a sample where content are extracted from a given start point to end point. Thanks in Advance. | |
Re: I hope this will help you... [B]How To: Use Forms Authentication with SQL Server in ASP.NET 2.0[/B] [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/PAGHT000014.asp[/url] Other Links [url]http://www.developerfusion.co.uk/show/5040/[/url] [url]http://www.15seconds.com/issue/020220.htm[/url] [url]http://www.asp101.com/articles/matt/securesite/default.asp[/url] | |
Re: Try providing the field names in your query... Insert Into archivecases(CompanyName,City) Select CompanyName, City From livecases Where Country = 'Germany' [B]or [/B] check the value entered in livecases table matches with the options available in table 'ctype' | |
Re: There are many forums that can be implemented, however it depends on your hosting plan, what languages (ASP.NET/PHP) are supported by your hosting plan, does it include database like (SQL/Access) | |
Re: If your datasource is database table, i would suggest you to use code-behind file load event to set the selected value of drop-down list. Private Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs) handles MyBase.Load If Not IsPostBack Then drpSponsor.DataSource = DataSource drpSponsor.DataTextField = "FieldName" drpSponsor.DataValueField = "FieldValue" drpSponsor.DataBind() … | |
Re: [QUOTE=cherryberries]I am creating a web application form. In the form, I need to have a date of birth field. What web controls should I use text box, drop down list or others ? Hope someone can help me with this !! Thanks[/QUOTE] most commonly noticed option for collecting date of … |
The End.