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:743551
More Search Options
RSS Available
Matching Posts
Re: custom validation to allow under score and numbers
Hi, You can use custom validator. Use the below javascript function function customValidateYear(sender, args) { var txtYear = document.getElementById(sender.controltovalidate) var intYear = txtYear.value; if (intYear >= 1900 && intYear <=2000) args.IsValid = true; else args.IsValid = false } and set the ClientValidationFunction property of the custom validator to "customValidateYear" and ControlToValidate Property to the respective text box.
Posted to
Getting Started
(Forum)
by
Senthil kumar K
on 7/9/2008
Re: master page error
Hi, Refer the link below: http://forums.asp.net/p/941553/1994517.aspx
Posted to
Getting Started
(Forum)
by
Senthil kumar K
on 7/7/2008
Re: gridview row colours not changing....
If e.Row.RowType = DataControlRowType.DataRow Then Dim lblTicketStatus As Label lblTicketStatus = CType (e.Row.FindControl( "lblTicketStatus" ), Label) If lblTicketStatus.Text = "1" Then e.Row.Style.Add( "background-color" , "gray" ) Else e.Row.Style.Add( "background-color" , "white" ) End If End If
Posted to
Data Presentation Controls
(Forum)
by
Senthil kumar K
on 7/7/2008
Re: Login page for intranet and internet
Hi, Request.UserHostAddress will return the user's IP address. Check whether the address under your network as explained by "s.e.888" above.
Posted to
Security
(Forum)
by
Senthil kumar K
on 7/7/2008
Re: Filling 2 DropDown with same data
Hi, What ever may the logic in code behind, the server has to render twice the html tags (<select>, <option>) So, the time to load the html will be the same.
Posted to
Web Forms
(Forum)
by
Senthil kumar K
on 7/4/2008
Re: Calling javascript function
Button1.AddAttributes("onclick", "javaScriptFunction()")
Posted to
Getting Started
(Forum)
by
Senthil kumar K
on 7/3/2008
Re: AutoPagepost back is not working properly for dropdown
Hi, During postback, in page load event calls the databind method of the drop down list or Page.Databind() will clear the event. So, Please call these methods as below If Not Page.IsPostBack Then ''Data bind methods of the dropdown list or Page.Databind End If
Posted to
Web Forms
(Forum)
by
Senthil kumar K
on 7/3/2008
Re: Build xml file from database
Use DataSet and call the method WriteXML(path).
Posted to
XML and XmlDataSource Control
(Forum)
by
Senthil kumar K
on 5/24/2008
Re: refresh page
Make this to switch off the auto refresh: <meta http-equiv="Refresh" content="-1" /> Do it from serverside: <meta http-equiv="Referesh" content="<%=serverside_variable%>"> update the serverside variable in your code behind.
Posted to
Getting Started
(Forum)
by
Senthil kumar K
on 5/21/2008
Re: Javascript hard coding vs passing var problem
net.MapNetworkDrive(drive, path); is the correct way. But getting values using innerHTML is not a write way, because there my be possibilities of spaces at end, and it may be dncoded to . add alert statements, before you pass the value to the method. window.alert(drive); window.alert(path); This is the best way debugging.
Posted to
Client Side Web Development
(Forum)
by
Senthil kumar K
on 5/20/2008
Page 1 of 3 (22 items) 1
2
3
Next >
ASP.NET:
Moving your ASP.NET Application to Windows Azure – Part I
TechNet Edge:
Windows Server 2008 R2 Quick Look- Installing the Migration Tools
WindowsClient:
My latest videos – WPF, Silverlight, Sensors, and PDC09
WindowsClient:
Developing an installer for your Surface application
ASP.NET:
Visual Studio 2010 and .NET 4 Update
WindowsClient:
Microsoft’s product placements in The Big Bang Theory
Channel 9:
Channel 9 Live at PDC09: Martin Cron
Channel 9:
Channel 9 Live at PDC09: Erik Meijer and Thomas Lewis
WindowsClient:
Download Data Services Update for .NET 3.5 SP1
Silverlight:
Extending the SMF for the HVP
Silverlight:
Extending the SMF for the HVP
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 12 of 13
Channel 10:
Bing Maps Update: Map Embeds and Draggable Routes
WindowsClient:
New WPF Showcase: WEB Touch
ASP.NET:
ASP.NET MVC 2 RC Released
WindowsClient:
Very exciting Microsoft Pivot from Live Labs
WindowsClient:
XAML for UI & .rc files
TechNet Edge:
DNS Security (DNSSec) Overview
Silverlight:
Silverlight 4 demos from my PDC Keynote now available
Channel 9:
Channel 9 Live at PDC09: Dave Campbell
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online