If you want to see exact error of the page you must turn Off custom error mode. After changing the webconfig file save and reload the page you can view the exact error of the page. This setting is under
In this article I am going to reverse string without using build in function. Here reverse string achieved without using ToCharArray. First of all calculating the string length after loops the calculated string length and logic implemented.
In this article we try to implement reverse string. String is converted to char array using ToCharArray method after that reverse operation will happen.
In this article I will explain how to convert String array to List using C#. we can achieve by using .ToList() on array types, this seems to be available only in .Net 3.5+.
When you try to send an email from web application if you got exceptions like this your Username or password must be wrong and also Check port is 465 (SSL) change to 80.
If you not configured credentials this error will occur. Your must need to include Credentials for secure connection then only authenticated.
To set up your email client with your email, you need to know your POP or IMAP Email Server Settings and ports. To find them, go to the Email Setup Center and write down the information that displays under Email Server Settings.
If you want to remove the last three character of the string object. Here this example code demonstrates us to remove all the character, excluding the last three using c# ASP.net framework c#.
We can use substring method to achieve. . Here this example code demonstrate us how can we get all the characters in the input string excluding the first three using c# ASP.net framework.
Substring method allow us to retrieve a substring from a string object. Here this example code demonstrate us how can we get a substring from a string in .net framework.