asp

glitchy access website, freezes for 30-60 sec intermittently

asp website with access database freezes for 30-60 seconds intermittently. The site is on an internal 2008 server. About 25 users access the site simultaneously. Is it just the limits of access or can i do something to improve the situation? change any timeout/refresh settings anywhere? or could it be a problem with the network? ...

What is the correct url for checking out AutoMapper from googlecode?

I am referring to this project by Jimmy Bogard: http://www.codeplex.com/AutoMapper The code repository site is: http://code.google.com/p/automapperhome/source/checkout The instructed checkout command is: svn checkout http://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only This does not work. I have tried SlikSVN, To...

Multiple "If...then....else if...." problem ?

Hi, I'm new in ASP development. This is my source code : ident = request.Form("ident") pass=request.Form("passe") response.write(ident) response.write(pass) if pass= "m" and ident="m" Then Session("connect")="membre" response.redirect("../") else if pass= "g" and ident="g" Then Session("connect")="gest" respo...

Error on opening ASP website

Dear all We changed the server of our ASP website and in new setting browsing the website returns this error: msxml3.dll error '80072ee2' The operation timed out /error404.asp, line 41 This is lines that I think returns error: Set XML=Server.CreateObject("Msxml2.ServerXMLHTTP.3.0") XML.SetOption 2,13056 XML.SetTimeouts 90000...

asp mvc: how to pass parameter to controller using jquery api?

I am following the following tutorial (http://www.highoncoding.com/Articles/642_Creating_a_Stock_Widget_in_ASP_NET_MVC_Application.aspx) on using ajax to render a partial form , but in this example parameters are not passed, and I have not been able to work out how to do it... This code works with no parameter function GetDetails() { $...

FPSE, folder permissions and SharePoint Designer

All, A few of our internal users are editing one of our classic ASP sites (Not a SharePoint site) via Sharepoint Designer which I believe uses FrontPage Server Extensions. I would like to give a particular user author rights to a single folder - ie, /products and any items and folders it contains. Any suggestions? ...

Login for webapp, needs to be available for support staff

I know the title is a little off, but it's hard to explain the problem in a short sentence. I am the administrator of a legacy webapp that lets users create surveys and distribute them to a group of people. We have two kinds of "users". Authorized licenseholders which does all setup themselves. Clients who just want to have a survey r...

Embed MS Word in asp3 Web Page

Does someone knows how can i Embed MS Word in asp3 page? TY ...

ASP.NET Login roles?

I need to secure my website without using the ASP.NET built in login controls or the Forms Authentication. Its need to support "normal" users and admin users. Any suggestion? Thanks ...

Handle server response in AS3

I have an asp page that loads a response " user=exists " everytime I try to update a database record (when of course the record already exists!) How can I handle this response with AS3 in Flash? ...

Simple regex question to remove \

Hi There I have a simple question how do I remove a \ with regex? Thanks I have tried it like this .replace(/\\/ig, ''); I am using javascript and classic asp Now it works: .replace(/\\/ig, ''); somehow the first time I tried it, it were not working! - Thanks for all the quick answers! ...

Find value of selected item in Drop down menu.

I have a drop down menu in an ASPX page along the lines of: <form> <select name="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat" selected="selected">Fiat</option> <option value="audi">Audi</option> </select> </form> That is dynamically generated from another controller (value...

HTTP Error 401.3 for specific .pdf file

Hi all, I just uploaded two .pdf files on my server. They are both in the same folder. The first one can be normally accessed but for the second one I get an HTTP Error 401.3 "You are not authorized to view this page" This looks weird to me. Do you have any idea why is this happening? ...

Launch a process in ASP?

I am working on an old ASP web app (not .net) and I need to launch a separate process (exe). After much googling I have yet to find a valid way of doing this. Anyone have any suggestions? Does CreateProcess work in ASP? Thanks! ...

Case Statements versus coded if statements

What is more efficient - handling with case statements in sql or handling the same data using if statements in code. I'm asking because my colleague has a huge query that has many case statements. I advised her to take stress off of the DB by coding the case statements. I've found that it is more efficient...but why? ...

what's diffrence between <% %> and <%= %>

I tried to find the diffrence on the google. BUT I 'm not able to search with '<% %>' , maybe the reason is <% is a HTML TAG Now i'm thinking there's no diffrence betwwen <% and <%= . ...

Embedding ASPX in ASP page

Hi all, I have an ASPX based component which I'd need to inlude into a plain ASP based script. Scenario is, that I'm working within an LMS system (Angel to be exact) and I wan't to create a new nugget within that framework. An Angel nugget is pretty much what a portlet is in the Java world. Now, the nugget spec. states that my starti...

Configure a WinHTTP application to use Fiddler.

I need to see the actual requests being made from a asp page to the webservice(which calls another webservice). All these requests happen on the same local box. I ran the "proxycfg -p http=127.0.0.1:8888;https=127.0.0.1:8888" on the command prompt based on http://www.fiddler2.com/fiddler/help/hookup.asp#Q-WinHTTP: How can I configure a ...

Retrieving Date in ASP

I want to retrieve the moth from a date(in textbox),then If that retrieved month is January ,some functions have to be added. CurrDate =session("txtdateFrom") CurrMonthID=session("txtdateTo") CurrMonthName=MonthName("CurrMonthID") iF CurrMonthName=January /* This portion have error */ /* some functions */ e...

How to reload ASP 1.0 page with additional parameter

Hi, I'm a beginner of ASP. I'm maintaining at ASP 1.0 page and I want to reload the page with an additional parameter when user click client-side URL. Its important that it also keeps the current parameters. The objective is to export the table currently display in Excel. So I want to reload the page with a special parameter that w...