@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet


Comments:

<0> Will someone PLEASE go to this page and tell me where the page is sending my data?
<0> http://www.gamingsyn.com/index.aspx
<1> it sends the data to index.asp
<1> (and #asp.net for .net related stuff :)
<0> thanks.
<2> how can i chage the returned from Date() from dd.MM.yyyy to dd/MM/yyyy?
<2> it what that way and suddenly it changed
<3> either set your locale or use FormatDate... oooor write your own function
<2> amm how could that be that it changed suddenly ?
<2> i can make a replace, but that scares me - if the format of the date can change without any notice...
<3> you shouldn't trust the computer setting anyway...
<2> i was testing some calanders code and when i got back to my code it did work
<3> is this on your own server?
<2> yep
<2> well its on local now



<3> and you will be in complete control of it at all times?
<2> but the app will run on a private server
<2> ammm
<2> well no i guess they will get us a remote to the box
<3> well... just setup your locale in each page, and you'll be sure
<2> what u mean by setup your locale in each page ?
<3> <%@LCID=1033%>
<3> for US english
<3> etc...
<2> ic
<2> nice!
<2> man u dont even know how much bugs u just fixed me ! :D
<2> i had only a small part of the data returned from the db
<3> np
<2> but now i get it all
<3> well, when it comes to DB, you should use ISO dates... yyyy-mm-dd hh:mm:ss
<3> they're more or less guaranteed to work
<3> for that you need to write a function :)
<2> i have a field with date and another with hour
<3> oh
<3> well
<2> thats weird coz when i puted the LCID it worked once (and gave me all the results) and thats it now i changed it to 2048 and i get again only 1 results
<2> out to buy ciggys bb5-10
<2> back
<3> what do you mean you changed it to 2048?
<2> w3schools said that for us its 2048
<3> 2048 is default
<3> 1033 is us english...
<2> ****
<2> i changed it back to 1033 and now it work
<2> i dont understand what is going on
<3> yes, that's expected behaviour
<3> 2048 means default, whatever the server regional settings are
<2> :)
<2> ahh ok
<3> 1033 IS us english...
<3> ok?
<2> ya thx :) i learned a new thing :D
<4> hello
<4> someone could just check this code please and telling me why i got a syntax error please ? http://pastebin.sekati.com/?id=denague@81938-278907a8-t
<2> how can i convert from the us date to eu date ?
<1> novi_poor; http://www.ilovejackdaniels.com/asp/vbscript-date-format-functions/ - check the formatDate function
<5> thats anoying
<5> heh pinger now
<4> hello
<4> i just need a little help please, i got a syntax error msg with my SQL update query, someone could take a look on my code please ? - http://pastebin.sekati.com/?id=Denague@1bd8f-c921191e-t
<4> someone ?
<6> hey
<6> I am looking for free asp .net free webweshosting
<6> with Sql server 2005 (express)
<7> how do i convert all the TEXT in a string to Capital letters?
<8> GOOD MORNING VIETNAM!!!
<8> hmm...
<3> :P
<9> when using the fileuploader object, how can i output the file menu name?
<9> for eg. if i name the form object for file "file1" how can i output it using the fileupload object.



<10> reveala join #asp.net for asp.net q's
<9> hehe thanks loonatik.
<9> i think i just came across confusing.
<9> you know how you have the <input type=file name="file1"> on a HTML form?
<9> you send it to a fileupload file and you define an object ie. set Uploader = New FileUpload
<9> is there a way, using this Uploader object, to retrieve the form object name specified in the HTML form?
<10> reveala no, but you can specify where it came from using a hidden input
<9> damn. retrieving a hidden form field wont work.
<10> you cant use the Request object
<10> you have to use your upload component
<10> it will have a method for retriving form elements
<9> that part is understood.
<9> see, i have 13 file fields...I want to upload the each file. Workout which file attribute it comes from and name the file accordingly.
<10> how would retriving the form name work
<10> but not a hidden input
<9> however, there is no way to identify which of the thirteen file attributes the file is coming from.
<9> by retrieving the value. ie "File1" i know it is coming from the 1/13 file attributes, so i can rename it big.jpg.
<10> you can always setup a onclick event client side on the input and store which one they modified in a hidden input
<9> i need a means of identifying the 13 file boxes :S
<10> yes but
<10> how would knowing the form name help
<10> do you have 13 different forms?
<9> 1 form. with thirteen file box things.
<10> then how would knowing the form name help
<10> <9> is there a way, using this Uploader object, to retrieve the form object name specified in the HTML form?
<9> for each file in uploader.files.items ...... grab the box which the file is coming from .... if box is called 'file1' then rename the file to big.jpg ..... next
<9> by knowing the filebox name, i know what the file being uploaded is to be named.
<10> you said form name
<10> form object
<10> anyway6
<9> sorry loonatik :S /// I meant that file box thing. what is it? an attribute?
<10> just call it input
<10> <input />
<10> thats what it is
<9> aha
<10> you could setup a onclick
<10> onclick="this.form.hiddeninputName.value='big'"
<10> not very secure though
<10> which file upoload component are you using
<9> um, FileUpload.
<10> there is no built in componet
<10> who makes it
<10> you are using asp cl***ic right?
<10> not asp.net
<9> yeah cl***ic. your right, sorry...ill just findout the component im using.
<10> you arent doing
<10> <asp:FileUpload />
<10> right?
<10> by the way, to get the name that would come from the form request, not from the files collection
<10> so you might be able to loop the form collection from within the upload comopnent and look to see which one has a value
<9> nah, i am using a file uploading script written by some dude. but i checked it :c/ the component doesnt support the retrieval of the file input. so i guess ill use the onclick.
<9> ah right.
<9> because after all, i am predefining the 13 input names. i could check.
<10> well if you are not using a upload component you are gonna have issues
<10> the file upload scripts dont work
<8> loonatik: ever use report services?
<10> nope
<8> -_-
<8> that was your time to shine man
<8> SHINE
<9> ill go with the onclick. simpler :P
<10> i got your report right here MadAtWork
<10> lean closer ill show it to you
<9> thanks loonatik. have a great day!
<11> can someone tell me what software i need to download/install in order to edit some material on my web page..i believe it was coded in asp and im not very faimiliar with that.
<11> can someone maybe point me in a better direction
<6> hi


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #asp
or
Go to some related logs:

#netbsd
#politics
#politics
#nhl
xboy advance roms
#hardware
#flash
#stocks
#beginner
#windowsxp



Home  |  disclaimer  |  contact  |  submit quotes