Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~5K People Reached
Favorite Tags

5 Posted Topics

Member Avatar for frmsasp

You can use the `asp:CustomValidator` control of ASP.NET to achieve the mentioned functionality. The HTML would look like: `<input type="text" id="TextBox1" runat="server" name="TextBox1">` <asp:CustomValidator Runat="server" ControlToValidate="TextBox1" EnableClientScript="False" ErrorMessage="Invalid DateTime Format" ID="Customvalidator1" ClientValidationFunction="ValidateTextBox1" OnServerValidate="CustomValidaorMethod"></asp:CustomValidator> and on server side (code behind of the page) you would have a public method like : …

Member Avatar for amitesh kaushik
0
4K
Member Avatar for Prasadd

In my opinion there are 2 ways of doing it: 1. Make your datasource such that it resembels what is required in the datagrid. Say, For example, you make a array of array and the base array would have table rows in it. So it would be like Array A …

Member Avatar for jireh
0
135
Member Avatar for c#dummie

if i am understanding right, you want to update the passwords for all the accounts that have userid as customerid1. If that is the case, then simple Update query woiuld do it. Like following: Update table1 set password= 'pwd2' where customerIdNo = 'customerid1' and after the query just do dataadapter.AcceptChanges(); …

Member Avatar for v_ashwani
0
107
Member Avatar for springcity

hey, if you are sending emails using ASP.NET, then you need not worry about anything extra..just use the System.Web.Mail namespace, every setting is present there..for example look at this code below: string MailServer=""; //Your mail server name System.Web.Mail.MailMessage SendMail = new System.Web.Mail.MailMessage(); //create a new mail message SendMail.BodyEncoding=System.Text.Encoding.UTF8; //set encoding …

Member Avatar for v_ashwani
0
100
Member Avatar for frmsasp

Dear friend, There are two ways of doing it. One on the client side and the other one is server side. On client side, you javascript's method Onblur event of textBox and call a javascript method that gets value from one TextBox and sets the value in second one. So …

Member Avatar for v_ashwani
0
819

The End.