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. sarad1978

    Virtual Directories

    right now I have a web service that writes out a simple text file from a query string. I need the file to be written out to a different server, I think I need to do it with a vitual directory. I've set that up in IIS, but I can't find any examples of how it's accessed in the coding. FOLDER_PATH...
  2. sarad1978

    Calendar in VS2005 ASP to query SQL table

    I have a ASP set up that displays info from a sql table in a grid. Below is the select statement. I use VS 2005 and just went though the wizards to set up the data source. This works fine but instead of it pulling just the current date I would like it to match based on a date the user picks...
  3. sarad1978

    C sharp Request.QueryString error

    nevermind I got it. It has to be brackets instead of parentheses around the value. string EmpLast = HttpContext.Current.Request.QueryString["employee_identifier"]; string member_num = HttpContext.Current.Request.QueryString["member_number"];
  4. sarad1978

    C sharp Request.QueryString error

    i know I copied/pasted right from this post to the project string EmpLast = HttpContext.Current.Request.QueryString("employee_identifier"); string member_num = HttpContext.Current.Request.QueryString("member_number"); and that gives me this error...
  5. sarad1978

    C sharp Request.QueryString error

    'System.Web.HttpRequest.QueryString' is a 'property' but is used like a 'method' at least I get a different error now. I think it is a class file it has the file ext cs. I know this may seem so beginner but this is my first asp and I'm really new to it. thanks for responding so quickly.
  6. sarad1978

    C sharp Request.QueryString error

    I am totally new to this but I get an error in VS2005 when I build the website that says "the name request does not exist in the current context" I'm guessing I'm missing some reference to what would allow me to call the method but I can't find it on the web anywhere's. public class clientXML...
  7. sarad1978

    XML Namespace using MSXML2.DOMDocument40

    Thanks Tsuji for the example and thanks k5tm for the documentation.
  8. sarad1978

    XML Namespace using MSXML2.DOMDocument40

    I'm new so forgive this question please. I'm creating a new XML document using the MSXML Dom object. Code: Set xmldoc = New MSXML2.DOMDocument40 xmldoc.async = False xmldoc.validateOnParse = False xmldoc.resolveExternals = False xmldoc.preserveWhiteSpace = True Set ProcInstr...
  9. sarad1978

    Sending files as email attachments through access

    Hi All, I have a question about how to send files that are created through access. An example is access outputs a bunch of tables as spreadsheets to one file names test.xls on say c:\blah\blah\test.xls. What I'm trying to do is send the test.xls file automatically through a macro or visual...

Part and Inventory Search

Back
Top