India Forums
      Home   Search   Login   Register   Member List  

  Viewing User Profile for: Admin
 About  Contact
Joined: 01-14-2003 01:28 PM
Last Login: 08-10-2006 03:52 AM
Website:
City: Unavailable to anonymous users.
Country: Unavailable to anonymous users.
Signature: Regards,
Saurabh Nandu
Microsoft MVP | MCP | Author
www.MasterCsharp.com
Master C#, the easy way...
Email: Unavailable to anonymous users.
MSN IM: Unavailable to anonymous users.
AIM: Unavailable to anonymous users.
Yahoo IM: Unavailable to anonymous users.
ICQ: Unavailable to anonymous users.
 Post Statistics
Admin has contributed to 154 out of 2,022 total posts (7.62% of total).
Most Recent Posts:
Re: Multithreading in C# 7/13/2006 12:42:45 AM   (Total replies: 0)
You code is incorrect. You should never access shard variables while using Threading - especially without Locking - since the results will be variable. The problem is that since the code is multi-threaded, even before the call to the first threadStartFunction might occur, the loop will end setting the counter to the last loop value of 2. Regards, Saurabh Nandu

Re: how to send sms from .net application 4/17/2003 1:46:10 AM   (Total replies: 0)
You'll need to first find a SMS Gateway (3rd party service) for sending SMS messages. Once you find the Gateway and Subscribe to its service, you will have to check out the API the Gateway provides you in order to send SMS messages. Google on SMS Gatways to get more information about them..

Re: installation problem with vs.net web services 7/21/2003 6:04:07 AM   (Total replies: 1)
What OS are you working upon ?? Check if FrontPage extensions are installed correctly and your IIS web server is running. Also check you have enough system rights to access the IIS web server.

Re: HTTP/1.1 500 Server Error 4/22/2005 7:07:28 AM   (Total replies: 0)
Check if IIS Service is running on your computer. ALso make sure that you can access pages from IE in these virtual directories hosted on the web server.

Re: HTTP/1.1 500 Server Error 6/21/2005 3:33:06 AM   (Total replies: 0)
do you get the same 500 error? Go to IE ->Tools - Internet Options -> Advanced Tab. Then look for the "Show friendly HTTP Errors" setting and clear the checkbox and click OK to apply the settings. Now call the page - IE should give to the exact error thats occuring on your server. ALso check if the ASP.NET runtime is correctly installed in IIS - or you can use the ASPNET_RegIIS -i tool from your Windows\Microsoft.NET\Framework\<version>\ directory to re-register ASP.NET with IIS.

Re: System.Net namespace missing 7/7/2003 1:39:58 AM   (Total replies: 1)
What exactly so you mean by "including both 'System' and 'System.Net.Sockets' namespaces" ? Have you declared the using statements above your class defination? using System ; using System.Net.Sockets ; using System.Net ; All the Socket classes reside in the System.Dll, hence you don't need to reference any addtional dll. What kind of a Project are you building ? Class Library, Win Forms apps ?

Re: How to use atcommands in c# - Plz Help 6/3/2005 3:34:27 AM   (Total replies: 0)
Are you building an application using CompactFramework? Or you want to run the application on Nokia phones? Since compact framework is only supported on Windows Mobile enabled devices. If you want to build an application for Nokia, Sony phones you will have to use their toolkit.

Re: dataset, update?? 9/2/2005 6:30:11 AM   (Total replies: 0)
ASP.NET is stateless. In the sense after the page is initially sent to the client browser the page is destroyed, and so is the dataset object. Hence you get a Null reference error. You will have to manually store the required values in a Hidden control and retrive it from the control instead of the DataSet after postback. Regards, Saurabh Nandu www.MasterCSharp.com

Re: Crystal Reports 8/3/2005 3:01:11 AM   (Total replies: 0)
You need to register it with Crystal's web site to receive the keycode. www.cryastalReports.com

Re: VB.NET multithreads memory leak 7/15/2005 5:28:33 AM   (Total replies: 0)
i'd recomend you get your concepts correct before you make claims. Especially how the Garbage Collector works and how memory/resource management is done in .NET. Firstly you need to implement the IDisposable interface use the Dispose pattern in the framework. Secondly Dispose never KILLS and object. Dispose method is provided by the runtime so that developers who use unmanaged *resources* like file handles, data base connections etc. can release the unmanaged resources, rather than wait for ...

Search for more...