Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C#

William Konig
PLUS
William Konig
Courses Plus Student 910 Points

putting it together

I am new to this. Let's say you build your html,css and javascript with atom another guy builds his c# code with visual studio. How do the two get linked together to form one website.

So if I understand this you put your files on a server in the html you have link to javascript and css folder, <script language="javascript" src="Scripts/Jquery-1.7.1.min.js" type="text/javascript"> </script> <link rel="Stylesheet" type="text/css" href="Styles/StyleSheet.css" />

How and where would you put the html link. I assume you put it in the designer but what would it look like and would a button still be coded in the html as <asp:Button ID="button1" runat="server" Text="button1/>; to execute c# code

3 Answers

Atom and Visual Studio are IDE tools. It basically doesn't matter which IDE you are using and it doesn't need to be same for you and your team mates. Once C# developer builds backend app and you build front end ( JavaScript, HTML, CSS ) you can put all that on server together.

William Konig
PLUS
William Konig
Courses Plus Student 910 Points

Maybe I am using this tool incorrectly. But I got the same reply back. Do you change the code in you html file to point to the css and javascript file as <script language="javascript" src="Scripts/Jquery-1.7.1.min.js" type="text/javascript"> </script> <link rel="Stylesheet" type="text/css" href="Styles/StyleSheet.css" /> and then in the designer do you point to the html file and how would that look and for a button that you run c# code in would you code something like <asp:Button ID="button1" runat="server" Text="button1/>;

William Konig
PLUS
William Konig
Courses Plus Student 910 Points

Hi Milos

Thank you for your answer. It filled in a lot of the gaps. I took some tutorials on ASP. All the same, they tell you about using the designer. What I have done is added the css and java script into visual studio and I have copied my html to file that was created by visual studio HTMLPage.htm. All works fine for html components. Now how would I add a grid and a button to it . I have to click the button for it to access a table and return data to the grid What would you recommend be done.