473,938 Members | 1,948 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Alternative to try / catch?

I want to convert a string to a DateTime type. The user can enter the date in
various formats and I am not sure if it will be a valid Date. Is it possible
to check if a string can be converted to a DateTime type without using a try
/ catch block. I was thinking of maybe something like is or as commands. But
both do not seem to work for this. Any suggestions will be much appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Show ("Date Parse Ok!");
//..other processing
}
catch(FormatExc eption formatEx)
{
MessageBox.Show (formatEx.Messa ge);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.
Jul 4 '06 #1
11 4657
Tantr,

Other than using a Try/Catch, there isn't a way. Unless of course, you
want to parse the format yourself. However, I think that the try/catch is
better in terms of maintainability .

When you move to .NET 2.0, you can use the TryParse method on the
DateTime structure.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******** *************** ***********@mic rosoft.com...
>I want to convert a string to a DateTime type. The user can enter the date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using a
try
/ catch block. I was thinking of maybe something like is or as commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Show ("Date Parse Ok!");
//..other processing
}
catch(FormatExc eption formatEx)
{
MessageBox.Show (formatEx.Messa ge);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.

Jul 4 '06 #2
Many Thanks Nicholas!
How do I parse the Format myself? Should I be looking at Regex?
Its just that the Try/catch is making the app quite slow as the DateTime are
in a Column of a grid , so called multiple times.

Cheers!

"Nicholas Paldino [.NET/C# MVP]" wrote:
Tantr,

Other than using a Try/Catch, there isn't a way. Unless of course, you
want to parse the format yourself. However, I think that the try/catch is
better in terms of maintainability .

When you move to .NET 2.0, you can use the TryParse method on the
DateTime structure.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******** *************** ***********@mic rosoft.com...
I want to convert a string to a DateTime type. The user can enter the date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using a
try
/ catch block. I was thinking of maybe something like is or as commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Show ("Date Parse Ok!");
//..other processing
}
catch(FormatExc eption formatEx)
{
MessageBox.Show (formatEx.Messa ge);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.


Jul 4 '06 #3
If try/catch is slowing you down, you are probably running your code
through the debugger (pressing F5 for example).

Here's a good read about exceptions and performance:

http://www.yoda.arachsys.com/csharp/exceptions.html


On Tue, 4 Jul 2006 01:29:01 -0700, Tantr Mantr
<Ta********@dis cussions.micros oft.comwrote:
>Many Thanks Nicholas!
How do I parse the Format myself? Should I be looking at Regex?
Its just that the Try/catch is making the app quite slow as the DateTime are
in a Column of a grid , so called multiple times.

Cheers!

"Nicholas Paldino [.NET/C# MVP]" wrote:
>Tantr,

Other than using a Try/Catch, there isn't a way. Unless of course, you
want to parse the format yourself. However, I think that the try/catch is
better in terms of maintainability .

When you move to .NET 2.0, you can use the TryParse method on the
DateTime structure.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******* *************** ************@mi crosoft.com...
>I want to convert a string to a DateTime type. The user can enter the date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using a
try
/ catch block. I was thinking of maybe something like is or as commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Show ("Date Parse Ok!");
//..other processing
}
catch(FormatExc eption formatEx)
{
MessageBox.Show (formatEx.Messa ge);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.


Jul 4 '06 #4
Tantr,

You could use a Regex, but I have to say, I really think that you
should stick with the try/catch, as it's the difference between maintaining
a few lines of code, versus a lot more.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:4D******** *************** ***********@mic rosoft.com...
Many Thanks Nicholas!
How do I parse the Format myself? Should I be looking at Regex?
Its just that the Try/catch is making the app quite slow as the DateTime
are
in a Column of a grid , so called multiple times.

Cheers!

"Nicholas Paldino [.NET/C# MVP]" wrote:
>Tantr,

Other than using a Try/Catch, there isn't a way. Unless of course,
you
want to parse the format yourself. However, I think that the try/catch
is
better in terms of maintainability .

When you move to .NET 2.0, you can use the TryParse method on the
DateTime structure.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******* *************** ************@mi crosoft.com...
>I want to convert a string to a DateTime type. The user can enter the
date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using
a
try
/ catch block. I was thinking of maybe something like is or as
commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be
something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Show ("Date Parse Ok!");
//..other processing
}
catch(FormatExc eption formatEx)
{
MessageBox.Show (formatEx.Messa ge);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net
ver
1.1

Thanks in advance.



Jul 4 '06 #5
Tantr Mantr wrote:
Many Thanks Nicholas!
How do I parse the Format myself? Should I be looking at Regex?
Its just that the Try/catch is making the app quite slow as the DateTime are
in a Column of a grid , so called multiple times.
Just how many elements are in this grid? In release mode, exceptions
are incredibly quick, despite the misinformation to the contrary.
Unless you've got thousands and thousands of invalid dates, it's
unlikely to be causing a significant loss in performance except in the
debugger.

See http://www.pobox.com/~skeet/csharp/exceptions.html for more on
this.

Jon

Jul 4 '06 #6
I am surprised that noone has mentioned the DateTime.TryPar se method
http://msdn2.microsoft.com/en-us/library/ch92fbc1.aspx.

This method is new in 2.0 (so is not really applicable to you) but does
exactly what you are asking for, if/when you move it is a better option for
you to use :)

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung
"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******** *************** ***********@mic rosoft.com...
>I want to convert a string to a DateTime type. The user can enter the date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using a
try
/ catch block. I was thinking of maybe something like is or as commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Show ("Date Parse Ok!");
//..other processing
}
catch(FormatExc eption formatEx)
{
MessageBox.Show (formatEx.Messa ge);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.

Jul 4 '06 #7
Nicholas mentioned it in the first reply...

Greg Young wrote:
I am surprised that noone has mentioned the DateTime.TryPar se method
http://msdn2.microsoft.com/en-us/library/ch92fbc1.aspx.

This method is new in 2.0 (so is not really applicable to you) but does
exactly what you are asking for, if/when you move it is a better option for
you to use :)

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung
"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******** *************** ***********@mic rosoft.com...
>I want to convert a string to a DateTime type. The user can enter the date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using a
try
/ catch block. I was thinking of maybe something like is or as commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Sho w("Date Parse Ok!");
//..other processing
}
catch(FormatEx ception formatEx)
{
MessageBox.Sho w(formatEx.Mess age);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.

Jul 4 '06 #8
A regular expression can't catch every illegal date, but it can very
well be used to verify that it at least looks like a date. You can
verify that the month is in the range one to twelve, and that the day is
in the range one to 31.

You can use the regular expression to get the year, month and day from
the string. Use the Calendar.GetDay sInMonth method to get the number of
days in that month and compare it to the day value that you have. This
way you can validate the date without using exceptions.

I checked this code for speed:

GregorianCalend ar calendar = new GregorianCalend ar();
Regex verify = new
Regex(@"^(0[1-9]|[1-2]\d|3[0-1])/(0[1-9]|1[0-2])/(\d\d\d\d)$",
RegexOptions.Co mpiled);
for (int i = 0; i < 1000000; i++) {
string date = "14/12/2006";
Match match = verify.Match(da te);
if (match.Groups.C ount == 4) {
int year = int.Parse(match .Groups[3].Value);
int month = int.Parse(match .Groups[2].Value);
int day = int.Parse(match .Groups[1].Value);
if (day <= calendar.GetDay sInMonth(year, month)) {
DateTime theDate = new DateTime(year, month, day);
}
}
}

It parses a million dates in three seconds, and discards a million
incorrectly formatted dates in half a second.

The I compared it to this code:

for (int i = 0; i < 1000000; i++) {
string date = "12/13/2006";
try {
DateTime theDate = DateTime.ParseE xact(date, "dd/MM/yyyy",
CultureInfo.Inv ariantCulture);
} catch (Exception ex) {
}
}

It parses a million dates in just one second, but a million incorrect
dates takes 60 seconds to handle.
Tantr Mantr wrote:
Many Thanks Nicholas!
How do I parse the Format myself? Should I be looking at Regex?
Its just that the Try/catch is making the app quite slow as the DateTime are
in a Column of a grid , so called multiple times.

Cheers!

"Nicholas Paldino [.NET/C# MVP]" wrote:
>Tantr,

Other than using a Try/Catch, there isn't a way. Unless of course, you
want to parse the format yourself. However, I think that the try/catch is
better in terms of maintainability .

When you move to .NET 2.0, you can use the TryParse method on the
DateTime structure.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF******* *************** ************@mi crosoft.com...
>>I want to convert a string to a DateTime type. The user can enter the date
in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using a
try
/ catch block. I was thinking of maybe something like is or as commands.
But
both do not seem to work for this. Any suggestions will be much
appreciated .

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.Sh ow("Date Parse Ok!");
//..other processing
}
catch(FormatE xception formatEx)
{
MessageBox.Sh ow(formatEx.Mes sage);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net ver
1.1

Thanks in advance.

Jul 4 '06 #9
This is why the TryParse pattern is used in 2.0.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Göran Andersson" <gu***@guffa.co mwrote in message
news:uD******** ******@TK2MSFTN GP02.phx.gbl...
>A regular expression can't catch every illegal date, but it can very well
be used to verify that it at least looks like a date. You can verify that
the month is in the range one to twelve, and that the day is in the range
one to 31.

You can use the regular expression to get the year, month and day from the
string. Use the Calendar.GetDay sInMonth method to get the number of days
in that month and compare it to the day value that you have. This way you
can validate the date without using exceptions.

I checked this code for speed:

GregorianCalend ar calendar = new GregorianCalend ar();
Regex verify = new
Regex(@"^(0[1-9]|[1-2]\d|3[0-1])/(0[1-9]|1[0-2])/(\d\d\d\d)$",
RegexOptions.Co mpiled);
for (int i = 0; i < 1000000; i++) {
string date = "14/12/2006";
Match match = verify.Match(da te);
if (match.Groups.C ount == 4) {
int year = int.Parse(match .Groups[3].Value);
int month = int.Parse(match .Groups[2].Value);
int day = int.Parse(match .Groups[1].Value);
if (day <= calendar.GetDay sInMonth(year, month)) {
DateTime theDate = new DateTime(year, month, day);
}
}
}

It parses a million dates in three seconds, and discards a million
incorrectly formatted dates in half a second.

The I compared it to this code:

for (int i = 0; i < 1000000; i++) {
string date = "12/13/2006";
try {
DateTime theDate = DateTime.ParseE xact(date, "dd/MM/yyyy",
CultureInfo.Inv ariantCulture);
} catch (Exception ex) {
}
}

It parses a million dates in just one second, but a million incorrect
dates takes 60 seconds to handle.
Tantr Mantr wrote:
>Many Thanks Nicholas! How do I parse the Format myself? Should I be
looking at Regex?
Its just that the Try/catch is making the app quite slow as the DateTime
are in a Column of a grid , so called multiple times.

Cheers!

"Nicholas Paldino [.NET/C# MVP]" wrote:
>>Tantr,

Other than using a Try/Catch, there isn't a way. Unless of course,
you want to parse the format yourself. However, I think that the
try/catch is better in terms of maintainability .

When you move to .NET 2.0, you can use the TryParse method on the
DateTime structure.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Tantr Mantr" <Ta********@dis cussions.micros oft.comwrote in message
news:EF****** *************** *************@m icrosoft.com...
I want to convert a string to a DateTime type. The user can enter the
date in
various formats and I am not sure if it will be a valid Date. Is it
possible
to check if a string can be converted to a DateTime type without using
a try
/ catch block. I was thinking of maybe something like is or as
commands. But
both do not seem to work for this. Any suggestions will be much
appreciate d.

Right now i have :
string s = "01/05/2006"; //user will be entering the data ,
//this could be
something
invalid like 22/22/2006
try
{
DateTime dt = DateTime.Parse( s);
MessageBox.S how("Date Parse Ok!");
//..other processing
}
catch(Format Exception formatEx)
{
MessageBox.S how(formatEx.Me ssage);
}
I was thinking of something along the lines :

if(s is DateTime)
MessageBox.Show ("Date !!!");
else
MessageBox.Show ("String..." );

but this does not work as C# always considers s to be of type string.
Is there any way of not using the try / catch block? I am using .Net
ver
1.1

Thanks in advance.


Jul 4 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

24
2377
by: Steven T. Hatton | last post by:
If I understand correctly, I have no assurance that I can determine the type of a simple class instance thrown as an exception unless I explicitly catch it by name. (non-derived classes having no virtual funcitons have no rtti) That is, there is no way to do something like: try{ funct_from_3rd_party(); } catch(...){ std:err << extract_name() << std::endl; }
3
3393
by: valued customer | last post by:
Is there a more concise way to do something like the the desired code below? The gripe is with the try-catch syntax. It takes *way* too many lines of code to evaluate a conditional expression when zero or more parts of the conditional expression may trigger an error. In this case, the trigger is a call to a non-defined (null) object. In other words, how can you do a more simple 'try' statement
11
6907
by: kaeli | last post by:
Hey all, I'd like to start using the try/catch construct in some scripts. Older browsers don't support this. What's the best way to test for support for this construct so it doesn't kill non-supporting browsers? TIA -- --
20
1393
by: Woody Splawn | last post by:
In a message yesterday titled Try Catch Question I got numerous responses. Thank you to all. After all the smoke clears I guess the question is where to place the Return True statement in the block of code below that is part of a function. Should it be at the end of the try block, as dipicted below, or should it be after the End Try Block? Or does it make a difference? Try mySqlConnection.Open() Dim Da1 As New SqlDataAdapter("Select...
32
6162
by: cj | last post by:
Another wish of mine. I wish there was a way in the Try Catch structure to say if there wasn't an error to do something. Like an else statement. Try Catch Else Finally. Also because I understand Finally runs whether an error was caught or not, I haven't found a use for finally yet.
15
11814
by: Neo | last post by:
Hello All, Although, I have read all the advantages of using Try Catch Block instead of "On error goto", I am still confused what is alternative for classic "Resume" statement. "Resume" was one of the crucial line in debugging which let VB programmers go to exact line where error was thrown. I still use on error goto instead of try catch since, I want "Resume" for debugging. Is there any alternative like Resume in VB.net for Try
1
2817
by: yancheng.cheok | last post by:
Hi all, According to "How can I handle a constructor that fails?" in http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.2, whenever there is a constructor fail, we will throw exception. However, how can we make the interface easy to use correctly and hard to use incorrectly? Client may forget/ ignore from having a try...catch block whenever they call the constructor. Is there any way we can prevent this from happen?
5
3842
by: Bry | last post by:
I've created a class that offers an enhanced way of handling fatal exceptions. The class allows the user to optionaly submit a http based anonymous error report to myself, and also records details in the application log. The static method is overloaded, and supports passing exceptions and/or strings just like throwing an exception.The class will also fall back to the standard exception handling if something goes wrong in my class. As an...
3
2270
by: =?Utf-8?B?SmVycnk=?= | last post by:
Hi All, I want to fill some textbox with properties from Active Directory. The fact is if the property is unavailable the program will crash. You can prevent this by using a try and catch. So far, so good. Now I want to fill 'allot' of text boxes. Doing a try and all the statements ending with a catch gives me the problem that the rest of the statement will not be checked. So how can I check every statement in one try catch 'loop'...
0
11522
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11104
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11287
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9854
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8216
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7380
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6073
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4903
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3499
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.