Click here to Skip to main content
15,907,497 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralAnalysis chart Pin
SUDHAKAR PALLAM13-Dec-07 21:06
SUDHAKAR PALLAM13-Dec-07 21:06 
GeneralRe: Analysis chart Pin
Vasudevan Deepak Kumar13-Dec-07 21:36
Vasudevan Deepak Kumar13-Dec-07 21:36 
GeneralUnable to cast object of type 'System.Byte[]'to 'System.IConvertible'. in Uploadiong Image in to Sqlserver Pin
mrgaddam13-Dec-07 20:48
mrgaddam13-Dec-07 20:48 
AnswerRe: Unable to cast object of type 'System.Byte[]'to 'System.IConvertible'. in Uploadiong Image in to Sqlserver Pin
Guffa13-Dec-07 21:11
Guffa13-Dec-07 21:11 
GeneralRe: Unable to cast object of type 'System.Byte[]'to 'System.IConvertible'. in Uploadiong Image in to Sqlserver Pin
mrgaddam13-Dec-07 21:43
mrgaddam13-Dec-07 21:43 
GeneralRe: Unable to cast object of type 'System.Byte[]'to 'System.IConvertible'. in Uploadiong Image in to Sqlserver Pin
Guffa13-Dec-07 21:50
Guffa13-Dec-07 21:50 
Questionhow i can check wheter the text enterd is in a data formate or not Pin
jagan12313-Dec-07 20:28
jagan12313-Dec-07 20:28 
AnswerRe: how i can check wheter the text enterd is in a data formate or not [modified] Pin
Tarun Dudhatra14-Dec-07 1:05
Tarun Dudhatra14-Dec-07 1:05 
Hi jagadeeshkumar2106,

suppose u have a one textbox names text1 ok now try this code

// Code is here.

try
{
DateTime d = new DateTime();
d = Convert.ToDateTime(Text1.Text.Trim());
// If it will not be in proper format then it will throw an error ok
// if u know error type about converting then u can also write one another catch block regarding that.
}
catch(Exception ex)
{
Response.Write("Enter Date is not in valid format");
}

I hope it will work.
modified on Friday, December 14, 2007 7:14:25 AM

General3 level drill down datagrid Pin
uglyeyes13-Dec-07 20:00
uglyeyes13-Dec-07 20:00 
GeneralRe: 3 level drill down datagrid Pin
uglyeyes15-Dec-07 12:31
uglyeyes15-Dec-07 12:31 
GeneralInvalidOperationException was unhandled by user code Pin
Elizma13-Dec-07 19:35
Elizma13-Dec-07 19:35 
GeneralRe: InvalidOperationException was unhandled by user code Pin
N a v a n e e t h13-Dec-07 19:43
N a v a n e e t h13-Dec-07 19:43 
GeneralRe: InvalidOperationException was unhandled by user code Pin
Elizma13-Dec-07 20:33
Elizma13-Dec-07 20:33 
GeneralRe: InvalidOperationException was unhandled by user code Pin
Paddy Boyd13-Dec-07 23:46
Paddy Boyd13-Dec-07 23:46 
QuestionCrystal Reports in ASP.NET 2005 Pin
zareee13-Dec-07 19:35
zareee13-Dec-07 19:35 
GeneralRe: Crystal Reports in ASP.NET 2005 Pin
Elizma13-Dec-07 21:22
Elizma13-Dec-07 21:22 
Generaldata manager class Pin
chithra.r13-Dec-07 19:32
chithra.r13-Dec-07 19:32 
GeneralRe: data manager class Pin
Christian Graus13-Dec-07 22:01
protectorChristian Graus13-Dec-07 22:01 
QuestionComparison chart Pin
SUDHAKAR PALLAM13-Dec-07 19:08
SUDHAKAR PALLAM13-Dec-07 19:08 
GeneralRe: Comparison chart Pin
Michael Sync13-Dec-07 19:48
Michael Sync13-Dec-07 19:48 
GeneralRe: Comparison chart Pin
SUDHAKAR PALLAM13-Dec-07 20:29
SUDHAKAR PALLAM13-Dec-07 20:29 
GeneralRe: Comparison chart Pin
Michael Sync13-Dec-07 21:19
Michael Sync13-Dec-07 21:19 
GeneralRe: Comparison chart Pin
SUDHAKAR PALLAM13-Dec-07 21:24
SUDHAKAR PALLAM13-Dec-07 21:24 
GeneralRe: Comparison chart Pin
Michael Sync13-Dec-07 22:16
Michael Sync13-Dec-07 22:16 
GeneralRe: Comparison chart Pin
SUDHAKAR PALLAM13-Dec-07 22:37
SUDHAKAR PALLAM13-Dec-07 22:37 

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.