Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. umairms

    Get the Root Directory of A Project

    Sure. You are welcome.
  2. umairms

    Get the Root Directory of A Project

    You can either try to store the prefix /aspx in web.config and require the user to modify as required while deployment. OR You can use some ASP.NET hyperlink control or any other function to "extract" the required URL. I can't give it a try, I am on a fresh installation and VS.NET is...
  3. umairms

    String to Integer

    Download .NET SDK. It's free and has the complete documentation. By the way System.Int32.Parse is equivalent to int.Parse.
  4. umairms

    string to double

    double d = double.Parse(textBox.Text);
  5. umairms

    Get the Root Directory of A Project

    Well. "~" is supported in ASP.NET and probably undocumented (actually only place where I encountered it was a server control development book from Microsoft Press). Definitely, ~ is NOT for your browser. :) It's processed by the ASP.NET engine.
  6. umairms

    Get the Root Directory of A Project

    Hello arduk. In ASP.NET, you can use ~ to point to the root folder of a web application. For example "~/web.config".

Part and Inventory Search

Back
Top