Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Other Computers (https://www.askmehelpdesk.com/forumdisplay.php?f=242)
-   -   Should I use asp.net or php (https://www.askmehelpdesk.com/showthread.php?t=295379)

  • Dec 24, 2008, 02:10 AM
    Idrees
    Should I use asp.net or php
    I want to make a matrimonial website, I am not sure weather to use asp, asp.net or php. Webhosting service provider told me that there is a limit of 10 MB of database space if I use asp.net after that I'll have to pay more and I can use up to 500MB of database space if I use php as it is free. I want to use a dll file's program to break picture in different pieces. So please tell me can php read from a dll file and how can I decide that weather to use asp.net or php.
  • Dec 24, 2008, 06:34 AM
    StaticFX

    I think you can call a dll in php... it would be something like this.

    say your dll is called test.dll
    and say it has a function called show_words()

    here is the function:

    Public Function show_words() As String
    show_words = "Here are some words!!"
    End Function

    then in the php

    $obj = new COM("test.dll");
    $output=$obj->show_words();

    echo $output;


    now I'm NOT positive... a php expert would need to verify this... but I think I have seen it done like that.
  • Jan 1, 2009, 01:11 AM
    Idrees
    Thank you very much for your answer. But I also want advice from you that whether I should make my website in php or asp or asp.net. Please advice me.
  • Jan 2, 2009, 06:44 AM
    StaticFX

    I think its really comes down to which you are more comfortable working with. Both have pluses and minuses.

    I think if you really want to use dll's then I would go with asp.net.

  • All times are GMT -7. The time now is 10:48 PM.