Click here to Skip to main content
15,920,513 members

Comments by jhathine (Top 3 by date)

jhathine 25-Jun-12 22:50pm View    
design pattern sir? I don't know how to answer that.. Can I say:

1. Centralized website contains 3 website for you to log on.
2. Centralized website is the admin's access key to the 3 websites.
3. Once admin is logged on in the main website, one child website at a time only you can logged in. Admin can only access another website by logging out to the previous child website. (Multiple opened website may eat large amount of data, that will slow down your app. I think haha)
jhathine 25-Jun-12 20:32pm View    
Here is the example of asp validator that i'm using:

<asp:RegularExpressionValidator ID="lastNameExpValidator" runat="server" ControlToValidate="LastNameTextBox" ValidationExpression="^[a-zA-Z0-9£àÀâÂäÄáÁéÉèÈêÊëËìÌîÎïÏòÒôÔöÖùÙûÛüÜçÇ’'-ñ]*$" Text="Invalid characters">

This is coded in .aspx
jhathine 25-Jun-12 20:27pm View    
hmm.. My asp validator validates fields from the client side. So, if I applied this approach, it will then submit it in the server before it validates in the client side? Correct me if I'm wrong. Because the idea of asp validator is to validate fields before it submits data to the server.