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 Mike Lewis 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. nidifice

    Calendar Query

    Thanks guys. This query is on a shared calendar stored on our exchange server. For some reason it isn't letting me use the "<" and rather than trying to figure out why I just used "NOT" logic; so, that along with an odd time problem I was getting wierd results. Here is my query which seems to...
  2. nidifice

    Calendar Query

    I have event startdate, enddate, and duration. I need to grab all of "Today's Events." Obviously getting events that start or end on today are easy enough, but I'm having trouble grabbing events that start before today and end after today. (If an event spans many days and today is in the...
  3. nidifice

    Back to default.aspx without re-load page

    (Meant to add this to my last post.) Add this to the top of your default page. If you are using any variables in your query string that are used to make it a dynamic page, add those to the VaryByParam. Regular ex: <%@ OutputCache Duration="100" VaryByParam="none" %> Query string ex: <%@...
  4. nidifice

    Back to default.aspx without re-load page

    You could cache the page for a faster response, but there isn't a way to not 'reload' it. If you are just going back you could try using Javascript and the history.back(1), but I've always had mixed results with this.
  5. nidifice

    Image Upload Resize to Database

    I had no problem uploading an image to MSSQL and then retrieving/displaying it. Now I need to be able to resize it before I upload it. Here is what I currently have, but I can't get it to display after upload, so I'm sure I'm doing something wrong. <code> If Not filMyFile.PostedFile Is Nothing...
  6. nidifice

    'user.identity.name' Returning Empty

    Yes, In the web.config file, I had to set my <authentication mode=&quot;Forms&quot;> to <authentication mode=&quot;Windows&quot;>
  7. nidifice

    test.aspx bringing up a 404 not found error

    I managed to get this working. The .aspx extension was denied in the Web Service Extensions and I had to give read/execute/dirlist access to the account 'servername'\ASPNET. This access had to be on the web root and the virtual directories.
  8. nidifice

    IIS doesn't recognize .aspx file

    I actually figured this out a little bit ago. It was a combination of what you said: The .aspx extension was denied in the Web Service Extensions and I had to give read/execute/dirlist access to the account 'servername'\ASPNET. This access had to be on the web root and the virtual directories.
  9. nidifice

    test.aspx bringing up a 404 not found error

    I have an images folder inside of my app's folder and I can navigate to the images just fine ex: h*tp://server/application/images/test.jpg It's really wierd to get the 404 instead of some other error. I'll try some different settings and post whatever I can find out.
  10. nidifice

    test.aspx bringing up a 404 not found error

    Yes. I added the virtual dir and gave it an app name/configuration.
  11. nidifice

    test.aspx bringing up a 404 not found error

    I have a test.aspx file that displays a couple .net controls. This file works fine on my local pc. When I move this file onto my live site (win2003) it comes up with a 404 not found error. I've ran 'aspnet_iisreg.exe -i' and the file type exists in my IIS configuration. Obviously I'm missing...
  12. nidifice

    IIS doesn't recognize .aspx file

    I have a test.aspx file that displays a couple .net controls. This file works fine on my local pc. When I move this file onto my live site it comes up with a 404 not found error. I've ran 'aspnet_iisreg.exe -i' and the file type exists in my IIS configuration. Obviously I'm missing something...
  13. nidifice

    'user.identity.name' Returning Empty

    In 'classic' asp I was using: request.ServerVariables(&quot;AUTH_USER&quot;)
  14. nidifice

    'user.identity.name' Returning Empty

    I'm trying to learn myself some ASP .net skills. As the subject states, my 'user.identity.name' is returning an empty string. I have the IIS anonymous access turned off and the integrated windows authentication turned on. Is there something else I am missing?
  15. nidifice

    Email validation against Exchange Server

    DeCojute, This isn't really what I'm looking for. This is strictly internal network (intranet).
  16. nidifice

    Email validation against Exchange Server

    I guess I never mentioned the exchange version. This is Exchange Server 2000 (will be 2003 by months end).
  17. nidifice

    Email validation against Exchange Server

    I want to be able to validate email addresses entered, against our exchange server's global address book. Is there anyway to do this? Please include sample code if you have it.
  18. nidifice

    Sending Resulting ASP Form Problem

    I did get it all working. Here is my code; '::::::::::::::::::::::::::::::::::::::::::::::::: dim item,strpost 'loop through the variables posted by the form and create 'a string to send as post variables for the next page for each item in request.Form if request.form(item) <> &quot;&quot...
  19. nidifice

    Horizontal Results List -- Is this possible?

    I'm grouping my results, and each group has about 3 detail lines. I'm wanting to list these 3 things horizantally after my group name. Is this possible? Group is obviously my grouping, and the resultxx is what is being returned into my details view. ex: Group 1 - result01 / result02 /...
  20. nidifice

    ASP Calender function?

    http://www.pengz.com/popcal2.zip That is the tool I am currently using on our Intranet. Its built with JavaScript, looks professional, and implements very easily. Hope this helps, Dustin

Part and Inventory Search

Back
Top