Input:http://www.allinterview.com/forms/questionform.php
Output:http://www.allinterview.com/forms/questionform
Write c# program to get the above desired output for the given
Input.....
Answer Posted / prem ranjan
string input="http://www.allinterview.com/forms/questionform.php";
string output= input.Substring(0, input.LastIndexOf("."));
Console.WriteLine(output);
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Where viewstate value is stored in asp.net?
What is voluum?
What is session in web technology?
Explain the components of web form in asp.net
What is the difference between user control an custom control?
How to do state management in ASP.NET?
How is application management and maintenance improved in asp.net 2.0?
What is query string with example?
how to debug web services on consumer side?
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What is the behavior of a Web browser when it receives an invalid element?
Web API supports which protocol?
To display data in the combo box, prior to setting the Data Source, what kind of property on a Combo Box do you set with a column name?
How does session work in asp net?
How to create multi language website in asp.net mvc? : Asp.Net MVC