No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
26 Posted Topics
Re: maybe try this:-[code]strPost = "<command><login>" _ & "<user>username</user>" _ & "<pass>password>/pass>" _ & "</login></command>" Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP") objHTTP.open("POST", "yoururlhere", false); objHTTP.setRequestHeader "Content-Type", "text/xml; charset=utf-8" objHTTP.send(strPost); strDoc = objHTTP.responseXML;[/code] Hope this helps. | |
Re: [QUOTE]may i aks how you changed it to thread6988.html instead of showthread?[/QUOTE] It's done using a technique called url re-writing. On this server, the page thread6988.htm does not physically exist. Instead, the web server monitors incoming url requests and looks for the word thread in that request..... if so, it … | |
Re: MySQL will happily work with ASP, which is why microsoft bundles the driver by default. For a list of connection strings including one for mySql, see this thread:- [url]http://www.webforumz.com/topic.asp?TOPIC_ID=8[/url] | |
Re: you want to be able to type over a graphic using an input box? or just overlay text on a graphic? if it's an input box, use <textarea style="background: url(pathtographicfile.jpg)"></textarea>" If it's the other, then you will prolly need to absolutely position the graphic under the text with x/y co-ordinates | |
Re: I think if you posted the fields in your DB, along with their TYPE and your ASP code, we'll wrap this up in no time. | |
Re: [QUOTE=mnemtsas]Look in your web logs for a referrer called 'googlebot' or 'freshbot'.[/quote]Actually, you are looking for a User-Agent containing the string 'Googlebot/' ... this string will vary, but NEVER contains 'Freshbot'. Freshbot is the name given by SEO's to google's daily crawler which finds the newest content. Of course, you … | |
Re: Hi sawani_bade.... First of all, I would consider making a back up of all nessesary files before doing anything else. Make sure to scan everything you put into the back up for virii. I would then seriously consider doing a complete re-install of windows, and as soon as you have, … | |
Re: Actually, this is very easy to achive in VB or VB.NET. Microsoft has already thought of the webbrowser control.... just drop one on a form, and customise the form to look how you like. This really is BASIC stuff. Why pay for browserbob when you can build your own quite … | |
| |
Re: You should use response.write Server.URLEncode(URLQuerystring) to produce the URL querystring.... This will encode the + sign in a way that is retreivable. | |
Re: The only way to do this is to NOT use autonumbering. You could then write a function to do the renumbering, but why bother? Your function would also have to take into account renumbering any foreign keys linking to this table from other tables..... in essence, nightmare, and completly unnessesary. | |
Re: You would need to convert the excel document to pull it's values from a database (access). You could then write a standard form which will show the data, and allow users to change the values etc. When submitted, the results are just fired over to the database, and next time … | |
Re: remove the @language directive if you are using vbscript. | |
Re: Ok.... not wanting to reinvent the wheel here, could i just point you to this webpage:- [url]http://www.aspwebpro.com/aspscripts/forms/formtodatabase.asp[/url] That has all you need. | |
Re: Maybe the server requires or cannot handle passive mode transfers. Try toggling the passive mode. | |
Re: you need to attach the debugger to the IIS process. When an error occurs, it will break at the statement inside the debugger. Dont ask me why, and I know this is a pain, but hey!! | |
Re: Have you set up SMTP service to route the mail? If not, obtain the ip address of your ISP's SMTP server. open IIS admin control and right click the default smtp server. On the delivery tab, click the advanced button. put your isp's smtp server ip address in the Smart … | |
Re: I always use these 2 functions:-[code]Sub ForceDownload(strFilePath) Set oFS = Server.CreateObject("Scripting.FileSystemObject") Set oFile = oFS.GetFile(strFilePath) StrFileSize = oFile.Size Set oFile = Nothing Set oFS = Nothing Const adTypeBinary = 1 Set objStream = Server.CreateObject("ADODB.Stream") objStream.Open objStream.Type = adTypeBinary objStream.LoadFromFile strFilePath strFileType = lcase(Right(strFilePath, 4)) ' Feel Free to Add Your … | |
Re: you need to use the command timeout in your connection string as well as the internettimeout property something like this: [code]RDSControl.Server = "http://yourdomain" RDSControl.InternetTimeout = 1200000 RDSControl.Connect = "Provider=sqloledb;" & _ "Data Source=whatever;" & _ "Initial Catalog=northwind;" & _ "User Id=sa;" & _ "Password=;" & _ "Command Properties='Command Time Out=1200'" … | |
Re: Actually, client side validation is a nice thing to use, but should NEVER be relied upon. Consider those that have JavaScript turned off!! How will you validate then? I always handle validation on the server, as it makes more sense. If you know there is an error in the input, … | |
Re: Hi, You are talking about a client side function of the browser software. ASP, and in fact all server side languages can effect no change in client side behaviours, and hence, you are a little stuck. It may be possible using a client side scripting language, but most likely ONLY … | |
Re: LMAO..... how many of us fell into this trap at the beginning? We were prolly just as confused as this guy! | |
Re: Actually, it's a string value, and so is everything send via an HTTP GET or POST. It is up to you, the developer to cast the strings to explicit types. You must assign the value of the posted form field to your variable, strpets. Either that, or do this:[code]IF request.form("PETS") … | |
Re: I presume you included adovbs.inc ? You need that file to use the named ADO constants | |
Re: You could use this:-[code]<HTML> <HEAD><TITLE>My Frame Page</TITLE></HEAD> <frameset rows="100,*" border="1"> <frame src="menu.htm" name="One" scrolling="auto" marginwidth="0" marginheight="0" noresize> <frame src="propertylistingpage.asp" name="Two" scrolling="auto" marginwidth="0" marginheight="0" noresize> </frameset> <noframes> You need a frames capable browser to view this page. </noframes> </HTML>[/code] Hope this helps. | |
Re: if you need it to work the way you describe, you can enable parent paths in IIS admin console. |
The End.