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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Patbeau

  1. Patbeau

    Language

    Hi, thats what I did for the text. But how to track the language of the user? I cant only use locale name because if he switch from english to french, I must remember it...
  2. Patbeau

    Language

    My web application has to be in French and in English. Also, im coding in C#.
  3. Patbeau

    Language

    Hi, What is the best solution for storing Language ? Querystring, Session, Cookie. Maybe I could also use URLRewriter with naming in French and in English? Im trying to best solution for the server performance and I want it to work on any browser. Thank you, patrice
  4. Patbeau

    ASP.NET - Browser Requirements

    Hi, My site cant support netscape 4 and I want to redirect people with this browser to a page. Is this a good way to do it? Can I do this with web.config ? protected void Application_BeginRequest(Object sender, EventArgs e) { HttpBrowserCapabilities bc; bc = Request.Browser; string...
  5. Patbeau

    Enable content expiration

    Thank you for your answer! I will do the Response.Expires instead of IIS "Enable content expiration"...
  6. Patbeau

    Datalist and DeleteCommand

    Hi, I use a DataList in an Asp page. When I do my action for Delete, it works fine. My problem is when I press the key "F5" or "Refresh" in my browser, another record is deleted (the one at the same position/index). Is there a way to reset the delete command after it is done once? I thought...
  7. Patbeau

    Enable content expiration

    Hi, Im not really good with IIS. I seen the option "Enable content expiration" (it is unchecked on all my sites now). My question is : If I check this case and check "Expire Immediately", will it overwrites the browser cache option? And what happen when it is unchecked ? What is the default...
  8. Patbeau

    Replication

    Thats what Im doing right now hehe I did a domain, my only problem is that it seems to be only for directory... But what happens with Database? I also have a program called IMail (Mail server)... I think I will have to read docs!
  9. Patbeau

    Replication

    Hi, We are trying to figure out a way to make a good backup of our Web Server. I have a web server with IIS, MSSQL, CF and a couple of pluggins. I want to have a backup server that has the same file and database just in case my server crash. What is the best way to do it? I want a complete...
  10. Patbeau

    Question - Recordset

    Yeah, thank you :)
  11. Patbeau

    Question - Recordset

    Ok so why people tell me to close the recordset if redirect close everything? Just a good programming habit? thank you,
  12. Patbeau

    Question - Recordset

    Thats what I thought. I did some test but I wanted some confirmation by pros.. :P But in your example wont it make an error if you refer to RecordCount when the recordset is closed? Sorry for my english...
  13. Patbeau

    Question - Recordset

    Hi, I would like to know, if I make a redirect before I close my recordset will it be close or let open? Is the processing of the page stopped when I do my redirection? Ex: IF GetUser.RecordCount > 0 then Session("User_ID") = GetUser("Usager_ID")...
  14. Patbeau

    ASP File Upload

    Thank you :) Sorry for adding another post about the same topic... yesterday I made a search on "File Upload" and I had an error.
  15. Patbeau

    IIS downloads ASP files

    In IIS, Go to properties of your virtual website. Under "Virtual Directory" go in configuration. Under mappings, is the extension .ASP there? If not create one. It should look like the .ASA. Mine look like this... Executable : C:\Windows\system32\inetsrc\asp.dll Extension : .asp...

Part and Inventory Search

Back
Top