Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K

26 Posted Topics

Member Avatar for zoran

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.

Member Avatar for ysihaoy
0
232
Member Avatar for Dani

[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 …

Member Avatar for selfhelpebooks
0
733
Member Avatar for maggie

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]

Member Avatar for SheSaidImaPregy
0
153
Member Avatar for buddyb

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

Member Avatar for DaveSW
0
138
Member Avatar for Chris Norton

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.

Member Avatar for Lafinboy
0
195
Member Avatar for seffi

[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 …

Member Avatar for Optimist
0
154
Member Avatar for sawani_bade

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, …

Member Avatar for RobUK
0
146
Member Avatar for TerryJones

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 …

Member Avatar for bulldozerisme
0
172
Member Avatar for Pradhuman
Member Avatar for thegodson_1234

You should use response.write Server.URLEncode(URLQuerystring) to produce the URL querystring.... This will encode the + sign in a way that is retreivable.

Member Avatar for RobUK
0
145
Member Avatar for red_evolve

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.

Member Avatar for mnemtsas
0
423
Member Avatar for oly

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 …

Member Avatar for ame12
0
136
Member Avatar for brob5000
Member Avatar for sara_baboo

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.

Member Avatar for RobUK
0
137
Member Avatar for talknerdytome

Maybe the server requires or cannot handle passive mode transfers. Try toggling the passive mode.

Member Avatar for bentkey
0
132
Member Avatar for nandkishorenair

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!!

Member Avatar for RobUK
0
134
Member Avatar for migazankodian

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 …

Member Avatar for RobUK
0
121
Member Avatar for scham

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 …

Member Avatar for RobUK
0
191
Member Avatar for marlongill

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'" …

Member Avatar for RobUK
0
95
Member Avatar for red_evolve

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, …

Member Avatar for RobUK
0
166
Member Avatar for vyruzxxx21

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 …

Member Avatar for RobUK
0
295
Member Avatar for jigar_eng

LMAO..... how many of us fell into this trap at the beginning? We were prolly just as confused as this guy!

Member Avatar for RobUK
0
207
Member Avatar for squirrelj

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") …

Member Avatar for RobUK
0
151
Member Avatar for cybour

I presume you included adovbs.inc ? You need that file to use the named ADO constants

Member Avatar for RobUK
0
202
Member Avatar for steadfastpc

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.

Member Avatar for RobUK
0
118
Member Avatar for rchandrasekaran

if you need it to work the way you describe, you can enable parent paths in IIS admin console.

Member Avatar for RobUK
0
154

The End.