| |
| |
| |
|
Page: 1 2
Comments:
<0> hello <0> if i have this construct <0> set rs=server.createobject("adodb.recordset") <0> response.redirect "default.asp" <0> set rs=nothing <0> will the server delete the Recordset ??? <0> if yes... when ??? <1> EpsilonX you should set rs=nothing before the redirect <2> When using CDO.message, it by default,uses the IIS SMTP server, right? Are there any logs over sent emails, alternatively, why they arent sent ? <3> hello does anyone know how i get a traditional asp site to work with visual studio 2005 (debugg) <3> Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly. <4> aoes - u don't <4> vs6 handles asp 'projects' , vs2003 handles asp.net 1.x projects, vs2005 handles asp.net 2.0 projects <4> no exceptions as far as I know <4> but I put quotes around 'asp projects' because there's really no such thing <4> debugging is pretty pointless if u can get it working in any fashion
<5> how do you make all links on a site look like www.company.com/folder/subject instead of www.company.com/folder/subject.asp <5> make every link appear as if it's a folder <5> and hide the fact that you're using asp <4> Scorpmoon - google URL Rewriting <4> cl***ic asp can't do it itself, it needs an isapi on the server, I use isapirewrite <5> could hax0rs still guess the engine? <4> if you're rewriting to stop hackers u should look into how hacking works <4> but needless to say it'll pretty much always be trivial to find out what technology a site is running <5> no, primarily for searchengines and useability <6> hi all <6> someone knows an application for changing partitions on an nt server? <4> changing what about them? <7> how does one create a .vbs file? <7> any good batch / vbs scripters here, need something written <1> buy a book? <7> thats one option, hower the time involved isnt <8> so what's the question, then? <7> ok, i need a batch or vbs script that will change the port a printer is using <1> Is it possible to p*** variables to code in an Include File and vice versa? <7> i.e from COM1 to COM2 <7> and then one to change it back <8> sPOOkah: no <8> likely not with VBS or batch. the windows API could do it, tho <8> wscript perhaps, but probably not <7> is this along the right line www.robvanderwoude.com/2kprintcontrol.html <8> try it <7> im trying, just im **** at this stuff <8> /r seems like a good place to start <1> that page looks like its on the right track <7> ok thanks ill give it a go <1> why do you need to change printer ports in a script? <7> long story, i need to use a cash drawer opening script and this only works when the printer driver is not using the port <7> so i need to change port, run script, change port back <7> really anoying, its just the windows printer driver seems to tie up the port <7> hmm /rCOM2 just fails <8> perhaps it's not called literally "COM2" <8> Look at the printer properties now, and see what the port is <7> if i use /p it just throws up the usual print setup window <7> ok maybe its COM1: <8> that's because you just told it to <8> that's what /p does <7> thats what /Xg says <7> i know sorry me being dumb <1> this has nothing to do with asp =P <7> hehe i know so sorry just ran out of ideas <7> i knew you were an inteligent bunch <1> ./Ss Store printer settings into a file <1> ./Sr Restore printer settings from a file <1> that would make it easy <1> if you can get the settings right <7> yeah, ill try taht <8> sPOOkah: You can press Ctrl+Enter to send a line of text that has a / at the start <8> /like this <CtrlEnter> <1> cool <1> im used to bx <1> ./ is just a habbit <1> thats good to know though thanks <7> thanks so much for helping me with this guys <1> I have a long script that has a global variables section on top that changes constantly <1> and the rest of the code is static <1> the problem is the guys changing the global variables dont really know what they are doing
<1> they are html guys <7> cant get it to save into a file ' /Ss /f test.ini' <1> i was trying to come up with a way to split the two <1> so i could keep my static code seperate <8> sPOOkah: global variables will still work <8> but you cannot "p***" things to it, like arguments or such <8> The way SSI works, is that before anything is parsed or executed <8> All the included files are basically copied/pasted into the 'parent' script <8> so they all exist in one file, during execution time <1> I see <8> so if page a includes page b, then when executed, it will be page a + b, so b can see anything defined in a <8> as a rough overview <1> yah <1> makes sense <1> that will work then <8> So yes, you can have a "vars.asp" that is included at the top of each page <1> cool <1> In a couple of scripts I have a loop that executes a conntemp.execute(strSQL) each time through the loop <1> is there anyway to concatenate the sql queries and execute them all at once? <7> cheers guys, nailed it <1> nice <1> congrats <8> sPOOkah: depends on the query. sometimes <8> give it a shot. separate each statement with a ; <7> sP00kah: you were my muse <1> Teycho yah I've tried and it didnt work <1> i just thought there might be some magic syntax <1> it would really cut down on server->db calls <8> Define "didn't work" <1> i dont remember the error message that was returned now. but the script failed at the line where i executed the query <1> i was trying to do multiple updates in the same table <8> would need an error message to tell you what the problem was <1> Ok i can recreate the problem later today <1> thanks for letting me pick your brain :) <8> yep <0> Hello <1> hi <0> i found a little something that may be bad for my site performance... <0> i have a page with the Design <0> i use Select case request("page"): <0> case Home <!--#include file home.asp--> <0> and so on <0> but as we all know the server include the files prior to varifing the Query string <8> Yes, that is bad <0> so it will include all and execute only throu the needed page ... <0> how can i avoid the extra includes ? <8> Don't include files you don't need? <8> or, you could try a Server.Execute, depending on the situation <0> but then i have many pages with the same design ... <8> Then change them. <8> or, you could try a Server.Execute, depending on the situation <0> and each change to the design will inflict a system whide change <0> i'll see what Execute can help me with ... <8> Then inflict a system wide change. <8> That's a very bad design, and it should be corrected <0> for Every design change ??? <0> it is crazy ! <9> EpsilonX <0> in a month the client want blue background... with spots on it ... <9> move to asp.net <9> quit ****ing around <0> loonatik : likely that you are right... but i am doing this in ASP <9> dont? <9> CERTIANLY dont do a select case <9> and 300 SSI <9> lol <9> you realize SSI fires first and every page is included on every request? <9> that is hilarous <0> that's why i am here... to find a resolution <9> move to asp.net <0> not an option at this point in time <0> and we aint all doing .NET <9> give your client their money back and tell them to hire someone who knwos what they are doing?
Return to
#asp or Go to some related
logs:
gentoo glaux salt and pepper packets I collect #stocks #beginner #windowsxp RTL8185 freebsd #beginner #sex #solaris #flash
|
|