suppose we using gridview contrl,with sqldatasource.in that
for birth date how can we take validation contrl for
dd/mm/yy formator how we assign regular expression for same

Answers were Sorted based on User's Feedback



suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / prashant kamble

first way , we are go in gridview property in that edit
column in that select that field name and make it item
template. after that right click gridview in that edit item
templated and select that field and then drag regular
expression validator in that column and give regular
expression .

Is This Answer Correct ?    17 Yes 1 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / arunananth

SELECT CONVERT(VARCHAR(8), GETDATE(), 1) AS [MM/DD/YY]

Is This Answer Correct ?    2 Yes 0 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / raja

Regular expression will be
^(0[1-9]|[12][0-9]|3[01])[-/.](0[1-9]|1[012])[-/.](19|20)\d\d$

Is This Answer Correct ?    1 Yes 0 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / gt

its is very simple just u go to the sql database,change the
related database table like

SELECT col1,col2 Format(Now(),dd/mm/yy) as PerDate
FROM Table

and provide the parameters

(Asper my knowledge(iam not sure))

Is This Answer Correct ?    6 Yes 6 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / himanshu

select col1,col2,TO_CHAR(DateTime.Now(),"dd/mm/yy") as date1
from table1

Is This Answer Correct ?    0 Yes 0 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / ravi

just try to this.This is working good

SELECT convert(nvarchar,colname,110)as PrDate from Table

Is This Answer Correct ?    2 Yes 3 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / kishore

its is very simple just u go to the sql database,change the
related database table like

SELECT col1,col2 Format(Now(),dd/mm/yy) as PerDate
FROM Table

and provide the parameters

(Asper my knowledge(iam not sure))

Is This Answer Correct ? 2 Yes 2 No
0

Is This Answer Correct ?    1 Yes 3 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / shivani

SELECT col1,col2 Convert(Varchar(20),Now(),3) as PerDate
FROM Table

Is This Answer Correct ?    1 Yes 3 No

suppose we using gridview contrl,with sqldatasource.in that for birth date how can we take validat..

Answer / kishore

related database table like

SELECT col1,col2 Format(Now(),dd/mm/yy) as PerDate
FROM Table

and provide the parameters

(Asper my knowledge(iam not sure))

Is This Answer Correct ? 2 Yes 2 No
0
Gt

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More ADO.NET Interview Questions

What is azure ado?

1 Answers  


how to add a selected row of a gridview to another gridview without reloading the page??

2 Answers  


How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?

0 Answers  


Diff B/W DataSet vs DataTable

6 Answers   Star Wire,


What is a string variable?

0 Answers  






What are major difference between classic ADO and ADO.NET?

2 Answers  


What is the use of connection object in ado.net?

0 Answers   TryTechnicals Pvt Ltd,


what is clustered index?why is it created?

4 Answers   Microsoft, Wipro,


How can we check that some changes have been made to dataset since it was loaded?

0 Answers  


differences between ADO and ADO.NET

0 Answers   Microsoft,


What is microsoft ado.net?

0 Answers  


What is ado.net components?

0 Answers  


Categories