Hello
I have the following SQL;
select members.FIRSTNAME, members.LASTNAME, bookings.REF, bookings.EVENTNO, events.[DESC], memship.SHIPNO
from members
inner join bookings on members.REF = bookings.REF
inner join events on bookings.EVENTNO = events.EVENTNO
inner join memship on members.SHIPNO =...
Hello
I've written the following SQL which works fine;
select members.FIRSTNAME, members.LASTNAME, bookings.REF, bookings.EVENTNO
from members
inner join bookings on members.REF = bookings.REF
I'd like to add one more field from another table. The name of the field is DESC and I had intended...
Morning All
I have a JavaScript on a .aspx which is located inside the heads tags. I need to be able to write a variable to the script i.e. var orderRef = <%= varName%>;. But I don't seem to be able to do it as the <%= %> tags do not turn yellow. Any ideas?
Thanks in advance.
i have a 2.0 .net web app that sends email. i would like to use it initially on my local system. i have installed the smtp virtual server and in iis set the relay restrictions to allow my current ip address and 127.0.0.1 to relay through the virtual server. i have also done the same for...
scenario
i have a site that has an admin section to it. the login page to the admin section is accessed using a similar url to this;
http://www.mydomain.com/admin section/login.aspx
my problem is this piece of code(i think)
FormsAuthentication.RedirectFromLoginPag(txtUserName.Text, False)...
this is the design to one of the fields in my db;
1 [timeStamp] datetime 8 1
this is the default value to it;
(getdate())
and this is an example of what it stores;
15/06/2005 11:35:41
this format is obviously american . . . i need it to be english. any suggestions welcome.
thanks
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.