Click here to Skip to main content
15,892,059 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to align menu item Pin
soni uma5-Nov-07 20:34
soni uma5-Nov-07 20:34 
GeneralRe: How to align menu item Pin
gunaarun5-Nov-07 20:58
gunaarun5-Nov-07 20:58 
GeneralRe: How to align menu item Pin
soni uma5-Nov-07 22:19
soni uma5-Nov-07 22:19 
Questiontype validations Pin
Sonia Gupta5-Nov-07 20:19
Sonia Gupta5-Nov-07 20:19 
AnswerRe: type validations Pin
N a v a n e e t h5-Nov-07 20:24
N a v a n e e t h5-Nov-07 20:24 
GeneralRe: type validations Pin
Sonia Gupta5-Nov-07 20:29
Sonia Gupta5-Nov-07 20:29 
GeneralRe: type validations Pin
Sonia Gupta5-Nov-07 20:58
Sonia Gupta5-Nov-07 20:58 
AnswerRe: type validations Pin
Imran Khan Pathan5-Nov-07 20:57
Imran Khan Pathan5-Nov-07 20:57 
Sonia Gupta wrote:
he value in the textbox is numeic , float , date ?



you can do this by
int outpar;
if(int.tryParse(txtVal.Text,out outpar))
{
//is numeric
}
else
{
//not numeric
}
float outpar1;
if(float.tryParse(txtVal.Text,out outpar1))
{
//is float;
}
else
{
//is not float;
}


bEst rEgard
pAthan

please don't forget to vote on the post that helped you.

GeneralRe: type validations Pin
Sonia Gupta5-Nov-07 21:02
Sonia Gupta5-Nov-07 21:02 
GeneralRe: type validations Pin
N a v a n e e t h5-Nov-07 21:10
N a v a n e e t h5-Nov-07 21:10 
GeneralRe: type validations Pin
Sonia Gupta5-Nov-07 21:46
Sonia Gupta5-Nov-07 21:46 
GeneralRe: type validations Pin
Piyush Vardhan Singh5-Nov-07 21:58
Piyush Vardhan Singh5-Nov-07 21:58 
GeneralRe: type validations Pin
Christian Graus5-Nov-07 21:41
protectorChristian Graus5-Nov-07 21:41 
QuestionMicrosoft OLE DB Provider for ODBC Drivers Error Pin
Kiran S. S.5-Nov-07 20:00
Kiran S. S.5-Nov-07 20:00 
AnswerRe: Microsoft OLE DB Provider for ODBC Drivers Error Pin
Michael Sync5-Nov-07 20:45
Michael Sync5-Nov-07 20:45 
Questionif condition Pin
niki_nilu5-Nov-07 19:50
niki_nilu5-Nov-07 19:50 
AnswerRe: if condition Pin
Imran Khan Pathan5-Nov-07 19:56
Imran Khan Pathan5-Nov-07 19:56 
GeneralRe: if condition Pin
N a v a n e e t h5-Nov-07 20:18
N a v a n e e t h5-Nov-07 20:18 
GeneralRe: if condition Pin
Guffa5-Nov-07 20:32
Guffa5-Nov-07 20:32 
GeneralRe: if condition Pin
N a v a n e e t h5-Nov-07 20:36
N a v a n e e t h5-Nov-07 20:36 
AnswerRe: if condition Pin
Kiran S. S.5-Nov-07 20:09
Kiran S. S.5-Nov-07 20:09 
AnswerRe: if condition Pin
N a v a n e e t h5-Nov-07 20:21
N a v a n e e t h5-Nov-07 20:21 
GeneralRe: if condition Pin
niki_nilu6-Nov-07 23:57
niki_nilu6-Nov-07 23:57 
Questionpaging Pin
kiran@p2softech5-Nov-07 19:33
kiran@p2softech5-Nov-07 19:33 
AnswerRe: paging Pin
Imran Khan Pathan5-Nov-07 19:38
Imran Khan Pathan5-Nov-07 19:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.