Basic DNS Configuration Question
Everything appears to be (mostly) there, with one significant annoying
exception. I've set up "mydomain.net" as a forward lookup zone in the DNS
console.
I've set up admin and www as hosts, so that I have subdomains: people can
visit www.mydomain.net and admin.mydomain.net without a problem.
I have each of these listed in IIS as host headers entries, so that the
webserver correctly differentiates the traffic. This all seems to work fine.
People can go to http://www.mydomain.net/index.html and they're served a
webpage. Code:
View Replies
ADVERTISEMENT
Hi. We have an old ugly application that uses ASP 3.0.
We had to move it to another server recently (basically by copying it
and setting up in IIS), and as we did, we started experiencing
problems with VB.
The code that somehow worked on the old server produces errors. The
most frequent example is
If Request("ddlFilter") then ....
It worked on the old server, now it gives us a type mismatch error.
Also, the errors about index not being in the collection (such as
recordset column) were swallowed (didn't occur) before and now they
actually occur, overall it's like VB went to "strict mode" or
something.
How do we make it lax again? Rewriting all that legacy code will be a
pita
View Replies
View Related
I am trying to configure a new site with IIS. I set up the virtual directory.
When I tried to view it, by typing the ip addr. it does go to the index.shtm,
but goes to another page.
Then when I tried to view the index.shm it shows only the html content. It
gives a file not found error for the Virtual Incude (asp ) files. Is there
something to be done to view the virtual include files?
View Replies
View Related
I'm using ASP to design a website. I know that I can keep some configurable values, such as Server Name, Database Name and even Login Username and Password in "web.config" under ASP.Net. As to ASP, is there a way like this? I'm curious about where to keep them.
View Replies
View Related
I have looked everywhere for asp code that would allow me to change the look of my IIS server generated directory listings. Eventually, I would love to change what is listed dynamically based on permissions, and allow uploading in the current directories.
View Replies
View Related
I think this error that I am receiving is a simple one to resolve.
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
I have downloaded and installed the latest version of MDAC but the error remains.
I am attempting to configure IIS on a different drive ( E:inetpubwwwroot, instead of c:inetputwwwroot ). Could it be that SQL, ASP and IIS just have trouble talking across multiple drives? ( I have sql installed on a third drive ).
View Replies
View Related
We use the following configuration on our development environment:
Server - win2k spk4
Local Computer - win2k spk3
We use the following code on the server to access a page on the local
IIS :
Set objSrvHTTP = Server.CreateObject ("MSXML2.ServerXMLHTTP.4.0")
strUrl = "http://" & strLocalComputer & "/maoz/ShowRecNum.asp"
objSrvHTTP.open "GET", strUrl , false
objSrvHTTP.send()
lngRecNum= objSrvHTTP.responseText
set objSrvHTTP = nothing
When strLocalComputer contains the local computer name, we get the
requested page. But if we use the IP address of the local computer we
get the error :
msxml4.dll (0x80072EE7)
The server name or address could not be resolved.
We manage to run the URL with the IP address from a browser on the
server but not from a browser on the local computer. Any ideas ?
View Replies
View Related
I am trying to create a product configuration tool and I'm not sure where to start. I have made a database with 4 columns..ID, component, compdescription and compcode. There are 8 different componets to configure on the product and the compcode holds the letters and numbers that eventually make up the part number when you make all your selections.
I want to be able to select one thing from each component category and submit to the database which will return a part number. I thought the easiest way to do this would be with 8 different drop down menus filled with all the options for that component category.
View Replies
View Related
i have downloaded the elijathegold's flexisearch coding, but when i create the database and the table DisWords, and change the database connection from
DBConn.Open "YOUR DATABASE CONNECTION STRING"
to
DBConn.open = server.Mappath("/flexisearch/new.mdb")<-line 54
an error message pop up and shown
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Driver Manager] Data source name too long
/flexisearch/flexitestbed.asp, line 54, hope the creator elijathegold or someone else have tried this fleixsearch can help me with this, thx a million
View Replies
View Related
when I tried to run my ASP,I'm getting an error and to fix it, I need to run the configuriation file.but tnsping is not installed proper it seems.So can any one plz tell me the procedure to regenerate the oracle control files on WinXp?
View Replies
View Related
i am testing the sending email when u submit a form .. but i am getting an error:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Email Send"
myMail.From="quince_103@hotmail.com"
myMail.To="qb_103@hotmail.com"
myMail.TextBody="This is a message."
myMail.Send
response.redirect("index1.asp")
%>
the error is:
Error Type:
CDO.Message.1 (0x80040220)
The "SendUsing" configuration value is invalid.
/middle/email.asp, line 7
line 7 is ==> myMail.send
so what shell i do .. ?
View Replies
View Related
Can someone please help with this, I am receiving this error from my simple form:
CDO.Message.1 error '80040220'
.
The "SendUsing" configuration value is invalid
/scripts/formmail.asp, line 19
Here is the asp script I'm using:......
View Replies
View Related
I am having a problem here to send my asp form to my email! I am using CDONTS under w2k and IIS! when i submit the form, all of the message (that suppose to go to my email), went to the queue folder under wwwroot!! nothing appear to my yahoo email also...
that means that my script is working...but only the configuration is need to be adjust here!
the thing is that i dont know how to configure, setup or setting the configuration for Exchange server! since my organization uses exchange server instead of the SMTP!
View Replies
View Related
I wasnt really sure where to put this thread so I have put it in both ASP and DNS forums - i hope this is ok. My problem feels incredibly complicated so Im hoping that someone on one of the forums might know a few things .
Im interested in getting remote data off of a URL using ASP. There is an article about it at the URL below: Code:
View Replies
View Related
Trying to send email via a form from my website. Have to use .asp and I have
been round and round the houses trying to get this to work.
On my xp pro system using IIS this works - an email appears in the folder
When it is hosted I get this error message. I understood that I didn't need
to set up any details about the host of the website. Lots of seaches suggest
putting in the smtp address but I am not sure what to do. I have also seen a
lot of talk about CDO.configuration but again despite searching I can't find
out what to do.
CDO.Message.1 error '80040220'
The "SendUsing" configuration value is invalid.
/version1/contact/email3.asp, line 51
Here's a cut down version of my page....
View Replies
View Related
I've read hundreds of posts regarding this, but haven't got a working solution yet. Does anyone have a working snippet of code from an ASP page that can be used to upload a file to an FTP server? I read all about INET, but due to some licensing issues it won't work....
View Replies
View Related
ASP.net is that what is used to create web pages on a server such as IIS?
ASP.net is part of visual studio, what software package contains IIS?
View Replies
View Related
I have an XML file which I access from a remote server like
Set http = CreateObject("MSXML2.ServerXMLHTTP")
http.open "GET","http://www.andrewlouis.co.uk/viewcountries.xml",false
http.send
strXML = http.responseText
The real server is password protected with, I think, with basic
authentication. How do I pass it the username and password.
View Replies
View Related
This is ALL the code that i have..
<%
response.write("This is a test")
%>
the file is saved as test.asp
I have uploaded it, and when i run it, I get the code being displayed ie.
<%
response.write("This is a test")
%>
View Replies
View Related
I am having one asp page in which a table is displayed. The table displays the values in textboxes.when the client uses search functionality it searches in the whole page but doesnt search in the table. Can any one tell me about how to search the values contained in textboxes in the table.if possible give me some code
View Replies
View Related
However I have a complicated update page so I am going to hand code it. I started by breaking down to the basics of Updating but I keep getting a 'Syntax error in UPDATE statement' error. Can anybody see where I am going wrong?:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="../Connections/Publishing.asp" -->
<% If Request("Submit") <> "" Then %>
<%
set Command1 = Server.CreateObject("ADODB.Command")
Command1.ActiveConnection = MM_Publishing_STRING
Command1.CommandText = "UPDATE Test SET Value = Paul WHERE ID = 2 "
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()
%>
<% End If %>
View Replies
View Related
Is there one? I need to hash a sensative string before inserting it into the sql server database. It HAS to be done in the ASP code, because it is also stored in a cookie. Any ideas? Server asp code is vbscript.
View Replies
View Related
I need source code for a simple MSN API example, something that interacts between MSN's controls. I want to break it down test it and use it for my own applications.
Or can people even suggest free source code sites for VB. I can search for them there. Planet-source-code had an AMAZING app, but it wanted an ocx file which I obviously didn't have.
View Replies
View Related
I have two simple problems which I think are related(?) I have a form with the folowing code:
<form method="post" action="sendemail.asp">
and
<input name="submit" type="button" value="SUBMIT">
when I click the submit button it does not go to sendemail,asp I have tried adding the full/parstial path infront of the sendemail.asp but no luck
Similarly I have the following code which I have taken an asp file from another project and changed the name accordingly but the image does not show Code:
View Replies
View Related
I'm using MSXML2.ServerXMLHTTP to get a web page using an url with basic authentication (e.g. http://user:password@www.mysite.it).
Microsoft denied basic authentication within Internet Explorer URL (see KB 834489) so I'm unable to get the page contents.The client-side workaround is to change some registry settings (see http://support.microsoft.com/kb/834489), anybody can help me with a different solution ?
View Replies
View Related
How to create a basic chat?
View Replies
View Related
I've got a field in my database called notes, where they of course are leaving notes for certain orders. I'd like to create a page that lists all orders that have notes left in them but I'm having trouble figuring out what sql statement to use. In my words it needs to say "select everything from the table where notes does not equal null"
I guess I just don't really know what to put for the null part. I'm thinking it'll be somehting like..
SELECT * FROM requests WHERE notes <> ...??? this is what I dont know.
View Replies
View Related
i am trying to pull records using a partial name, here's what i have
PlayerName = "'" & "%" & txtFindPlayer.Text & "%" & "'"
this part works fine, for example text is 'ric'
Set rs = db.OpenRecordset("SELECT * FROM EVENT_SCORING_TBL WHERE PLAYER_NAME LIKE " & PlayerName & "")
no record containing 'ric' is found, but the syntax seems to be ok. Am i using the right wildcards? there is definatly an Eric in the database, but it doesnt pull. any suggestions?
View Replies
View Related
I'm having some problems to perform select on sql statements just cause I'm really confuse on how to refer some variable I got by request.querystring or request.form or even inside form variables...sometimes just using "var" others using "&var&" others '%"&var&"%'...
Does anyone have an article link or some tips regarding this kind of issue?
View Replies
View Related
I have setup basic authentication on one of my web sites. For some reason, I get challenged when I navigate to some of the ASP's within the website. I have checked all the pages and made sure they all have authorisation set to a specific group.
What can be causing this?
View Replies
View Related
I have login-page where i set the column LoggedIn = 'Y' when a user logs
in, i was wondering if you guys could help me set up my global.asa so
correctly so it sets LoggedIn='N' when Session("UserID") times out.
what is needed besides:
set conn=server.createobject("adodb.connection")
conn.open connstr
sql="update users set loggedin='N' where userid="&session("userid")
conn.execute(sql)
set conn=nothing
View Replies
View Related
Could somebody please outline the steps needed to create a (very)basic forum from scratch?
ie. the pages that are definetely required...eg. the sign-up and log-in pages... and a very basic admin page.. also, the structure of the database?
View Replies
View Related
I have a ASP site. Very basic, few pages, 2 includes. There is no user input from the site, no fields they can insert SQL statements.
I also have a login where the Admin can add/edit/remove news items, which are stored in a DB. What are the security issues linked with these?
My login isn't querying the database, but should I use the sha() function to encrypt the pass? Although it's just 1 user adding to the system, should I "clean" up the input(add news/edit news) before it's stored in the Access DB?
Should I restrict IPs solely to those within the building they use?
View Replies
View Related