I'm having problems with one of the websites on my MS2000 server. I can't publish a fp2000 web to it properly because it thinks fp server extensions are not installed.
Whenever I use the MMC snap in to check the server extensions for this web, it tells me that my admin tool is not compatible with installed server extensions. Not sure what to do with this.
If I have a search submit button, when I click submit button, it will submit the form to search.asp for form processing. This will be the URL: http://www.mycompany.com/search.asp?q=programming
But when I do search in google, search doesn't have any file extension. How do they do that? I saw some site are like that too. http://www.google.com/search?hl=en&...G=Google+Search
..asmx not getting parsed.whten I call a page with an .asmx extensionon my machine all I get is the code, it does not get parsed.how can I fix this, can I manually add some ISAPI application to IIS to make it work.
How can I validate a file extension before it is being uploaded to the server?Let's say I want to check the last 3 or 4 chars of the file, if it is JPG. then upload it. If not, alert(Only JPG file allowed).I'm using this allow user to upload.
I am trying to upload a file to the server but first I want to rename it to the users session id. Ok everything is working except when I rename it, it drops the file extension. What is the best way to get the previous file extension and add it to the new file name? Here is an example of what it is doing on my end.
filename: test.xls rename: 123456678 what I need: 123456678.xls
I have a site that is HTML and I am considering moving it to ASP. However this site has a great deal of investement already on SEO and changing the extension on the files would take a hit to our rankings. I've heard that there is a way of saving the ASP files as HTML extension. Does anyone know how to do this?
I got background in my left and right frames (tables) and on the background image there's a custom border on each side. I want the background to extend on a different resolution rather than repeat. Anyone know how I can pull this off?
When I create an asp file and click on it on my local drive, photoshop opens it, because the asp extension is already defined to photoshop.
I know you can try to change that extension association in the windows folders options, but even though photoshop owns the extension, it does not appear in the list of extensions. Is there some way to get photoshop to let go of the extension?
I used to have a dreamweaver extension, which inserted the asp script for recordset paging, you know the one where at the bottom of the page there is a line of links allowing you to search through your recordsets without having to load them all in. Anyway I formatted my hard drive and thought i had saved it but i turns out i didn't and cannot find where i got it from.
If anyone has a dreamweaver mx extention for this can you please upload it as an attached file so i can download it.
If I want to know if a file exist. But I do not know it's extension, how shall I check the extension and if it exists? (I know the name which to check)
If you'll notice, there's a comment in this snippet that drops the extension. How can this be modified so that the extension IS shown?
Set myFileSys = Server.CreateObject("Scripting.FileSystemObject") Set Folder = myFileSys.GetFolder(Server.MapPath("/meetings")) for each file in Folder.Files If Not file.name = "index.asp" Then FileName = Left(file.name, (Len(file.name) - 4)) 'drop the extension FileSize = cint(file.size / 1024) 'convert into kilobytes and drop the decimal Response.Write("<li><a href='/meetings/" & file.name & "'>" & FileName & "</a> - " & FileSize & " K<br>" & chr(13)) End If next
where can i find the ASP file upload dreamweaver extension for free? if not, would someone suggest a way to upload file into database using dreamweaver?
Is there any tool for debugging ASP scripts? I wanted to do some tracing and check whether the execution of my statements and queries are in the correct order or not.
i have a little commandlinetool, that returns a value (number) via stdio -how can i display this value on an asp-page?currently i use this "workaround": run the tool every 5mins (using thescheduler) and redirecting the output to a txt-file (tool.exe > temp.txt) and then i use the filesystem-object to read the value and display it on the webpage...
....but this is:
a) not realtime b) certainly not the best solution so what's the propper way to do that?
I've been looking for an upload tool for a long time now. I have little ASP programming experience, so I'd like to edit it as little as possible. Most tools I found had way too many options or not nearly enough. Here is exactly what I need:multiple file upload capability drop-down menu to choose which directory to put the files in no database support needed.
I have a website that is on a windows hosting. It's straight HTML site. I need a way to have a search on the site that can search HTML text. How can I do this in ASP? How do I index my site? Is indexing necessary?
What do you think the best design is for a search tool? Query Strings are commonly used. They are bookmarkable, yet unattractive.Form Submission to self keeps a clean address bar, but search results are not bookmarkable. My teammember likes the idea of using the FileSystemObject to generate a file EVERY TIME someone submits a search.
The file would contain a specific database query. It's bookmarkable and clean looking, but it generates a crapload of files.So far we have avoided the use of query strings in the web site. I think they would be acceptable for the search tool though. My teammember is steadfast about avoiding query strings however, and wants to use the last option. If there are any programmeres out there experienced with mid-size asp applications involving a similar search tool.
I am trying access a virtual directory I set-up through IIS and my web pages are built on asp. I also ran the IIS Lockdown tool on the server, and I have never been able to view the website. I know this is vague, but I am wondering if there are certain features turned on within the IIS lockdown that prevents you from viewing asp?
I am building a ASP financial reporting application. Here the user inputs quarterly financial information. The data obtained is being used for uploading a separate in-house application. The end-user should be in a postion to run reports on their own based on the quarterly information they furnish via the web applciation.
My question here is what is the best way to devleop reports in the asp applications so that users can view their own report online? Somebody suggested pure html reports. However, I believe there should be better ones which would be web based.
I am looking to build a desktop based notification tool which can be placed at tray bar. Well I have an asp script which checks my emails now I want to build a notification tool so that whenever I receive any new email the notification tool pop up a message at tray bar and show me that New email received.