Search results

  1. R

    Transact SQL

    Here are some books i'd look into. http://www.amazon.com/gp/product/076457955X/sr=8-5/qid=1153324557/ref=pd_bbs_5/103-2209685-8262266?ie=UTF8 http://www.amazon.com/gp/product/0072123753/sr=8-16/qid=1153324557/ref=sr_1_16/103-2209685-8262266?ie=UTF8 Website(s) http://www.sqlteam.com/...
  2. R

    Age frm Birthday script?

    This is the script i use to calculate age. It's a SQL User Defined Function, not asp. CREATE FUNCTION GetAge /* Version 1.1 This function returns the age of a person, in years, for a given date of birth. Due to the limitations placed on using the GETDATE() function within user-defined...
  3. R

    Good ASP.NET/VB.NET Book

    Try these: http://www.amazon.com/gp/product/0764568000/qid=1138038909/sr=1-1/ref=sr_1_1/103-5945287-7899016?s=books&v=glance&n=283155 http://www.amazon.com/gp/product/0764557076/qid=1138038909/sr=1-9/ref=sr_1_9/103-5945287-7899016?s=books&v=glance&n=283155...
  4. R

    Table size

    Hi all, Just a quick FYI for you. Here is a T-SQL script that you can run to see each table size in your database. BEGIN SCRIPT ========================================== declare @id int declare @type character(2) declare @pages int declare @dbname sysname declare @dbsize...
  5. R

    Sending emails

    Hello, I'm currently working on a CRM application that will be used by people and/or businesses to use online. Kinda like Salesforce.com. One of the options is they will be able to send email from within the application. I plan on faxing you the email agreement soon so my account can send...
  6. R

    Programming for a lifetime (it seems) ??

    Have your taken a look at .Net from Microsoft. Specifically C#? Richard M.
  7. R

    Ftp upload/downloads

    Hello all, I'm working on my new website and i've noticed something strange. When i upload or download files via my ftp app, it shows up as bandwidth being used. Is this normal? Richard M.
  8. R

    Asp 2.0 & Sql 2005

    Next week, on the 7th, Microsoft will release both ASP.net 2.0 and SQL 2005. When will you guys upgrade your servers for this new software? Thanks. Richard M.
  9. R

    how to get value of all selected checkbox?

    Try this. for each cControl in pn1.Controls If TypeOf cControl Is CheckBox Then dim cbox as CheckBox = Ctype(cControl, CheckBox) if cbox.Checked = True Then Response.Write(c.Text) end if End If next cControl Richard M.
  10. R

    Service Account

    Whoops!!! I guess i should change my passwords.
  11. R

    Service Account

    Hi Guys, Something wierd just happened. I had someone sign up for access to my service account!??. I didn't think this was possible.
  12. R

    OK convince me to move to Jodo

    I've hosted with them for about 7 or 8 months now. Here's my list. 1. Support is by far the best i've seen. 2. Very professional in communication 3. Very fast bandwidth and hardware 4. Different plans that are feature rich and cost effective. 5. Stephen and Yash are my personal heros...
  13. R

    SQL Transfer limits

    Hello, I want to link my SQL Server 2000 at my office to a SQL database that i've setup at JODO. My question is, since i will be doing alot of data transfering back and forth from my office to JODO, will this be charged against my monthly bandwith? I don't think it should because i'm not...
  14. R

    Shared app across domains?

    You and i seem to be on the same page with this. I plan on offering something similiar. The article below might interest you. http://news.com.com/On-demand+applications+face+growing+pains/2100-1012_3-5828465.html?tag=nefd.top If i were you, i'd look into the idea of Smart Clients from...
  15. R

    slow asp form

    I just tried it and it works pretty fast. Richard M.
  16. R

    Will Cold Fusion Remain Strong?

    Cold Fusion is dead! Richard M.
  17. R

    INSERT INTO problem

    Are you saying that these 100 or so records are already in a table? If so, you could try this: SELECT ? INTO tblEmailLogs This select statement selects all records from one table, and then creates a new table with those records in it. Richard M.
  18. R

    ASP.Net problem

    Have you added the following code to your webconfig file? <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>
  19. R

    Cancellation

    Hello, I just cancelled my shared hosting account, but still have my reseller account. I just wanted to make sure that you guys don't, by mistake, delete my reseller account. If you have any questions, please PM me. Thanks. Richard M.
  20. R

    Access to files

    Hello all, I have a quick question. I know that i can login to my users control panel, but can i also gain access to there files and SQL server databases. The reason i asked, i want to check and make sure no mp3's or any other illegal files aren't present. Thanks.
Back
Top