I am an absolute beginner when it comes to create WebSites and are perheps out to catch some basic knowledge of the steps of creating a page etc...
I am not a beginner in C# and C++ and know these languages Well.
I have downloaded Visual Web Developer 2008 Express Edition where I can use my C# skills.
* For example I have purchased a DomainAdress already:
http://www.abc.com //Example
* I have created a test-WebSite in Web Developer like this:
// Only a button and 2 textBoxes for a test
protected void Button1_Click(object sender, EventArgs e)
{
TextBox2.Text = TextBox1.Text;
}
Now is my question. I can run this WebSite through F5 on my computer but I dont know how I will connect this WebSite with my purchased adress so others can access it ?
This is my question. What do I need to do this ?
Thanks a lot