Results 1 to 11 of 11

Thread: An ASP.NET NOOB

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2005
    Posts
    312

    An ASP.NET NOOB

    Hi People.
    Uptil now i have only made the ASP.Net applications on the LAN. But now i want to make an ASP.NET website and upload that website. The Purpose of that website is to keep track of all the sales and purchase of our company. The ASP.net pages should be able to get and send the data from SQL SERVER or any other database on the Website.

    Can anybody help me how to use it?
    What things should i need?
    Which Web hosting should i use?

    Please help me and give me a step by step description.

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2005
    Posts
    312

    Re: An ASP.NET NOOB

    Can anybody help?

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2005
    Posts
    312

    Re: An ASP.NET NOOB

    This is really Amazing , nobody wants to help me. I think my question is not that difficult.

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: An ASP.NET NOOB

    You need a web host with asp.net and sql server. Create it as you would in a normal development environment, with the exception of your connection string being customizable (in a web.config file)

    You'd only need to upload the files after you're done.

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2005
    Posts
    312

    Re: An ASP.NET NOOB

    At last a reply. Thanks for the reply. Can you please suggest any web hosting service.

  6. #6
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: An ASP.NET NOOB

    I use www.jodohost.com

    But it depends, what are you looking for?

  7. #7

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2005
    Posts
    312

    Re: An ASP.NET NOOB

    Thanks for that web hosting suggestion. I have registered for a trail on this website and will get a reponse from them in a couple of days. Thanks again for the Suggestion.
    You have told in your post that i have to change the Connection String in Web config File. Can you please tell me what i have to change and where is that Web Config File.
    Also can you please tell me about some ASP.net Tutorials on web because it had been a long time since i had worked in ASP.net so i think i need a bit revision before proceeding Further.
    Thanks in Advance.
    Waiting for your reply Anxiously.

  8. #8
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: An ASP.NET NOOB

    This is what I meant by the config file:

    http://aspnet.4guysfromrolla.com/articles/053102-1.aspx

  9. #9
    Fanatic Member
    Join Date
    Jun 2005
    Posts
    625

    Re: An ASP.NET NOOB

    Here's a snippet of code for making a SQL connection, you will use this (or some form of it) many times.

    Dim SQLConn as New SQLConnection("server=X;database=xdb;user=xu;password=pw)
    Dim SQLCom as New SQLCommand("SELECT name FROM table WHERE id=1", SQLConn)
    Dim user as String

    cn.Open()
    user = SQLCom.ExecuteScalar()
    cn.Close()


    There are many different ways to do this, plus you will have to use the SQLDataReader if you want to get more than one value, and the SQLDataAdapter if you want to do something like fill a DataGrid. This is just a (very basic) start on using the SQL APIs in Visual Basic.

  10. #10

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2005
    Posts
    312

    Re: An ASP.NET NOOB

    THanks Dogboydelta for this Snippet Code.
    Thanks Mendhak for that link. I will have a go to it soon.
    Well i am wondering why i am not getting the response from the JODOHOST.COM. I have recieved one of their mail saying to wait for our Confirmation, but after that no mail.What do you people say.
    Last edited by Raziiq; Sep 28th, 2005 at 09:02 PM.

  11. #11
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: An ASP.NET NOOB

    Ask here, the techies frequent the forums too...

    http://support.jodohost.com/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width