0
votes
Whats a liquid layout?
Liquid Layouts refer to the design concept of a website. A liquid layout will move in and out when you resize your browser window, due to is having percentages and relative widths in the CSS.
…
0
votes
One Update Panel vs. Multiple Update Panels
Not sure about the best practices, but in my experience multiple panels work well, and reduce the amount of data being sent at one time - resulting in an increase in response time overall. Multiple …
0
votes
How do you start building an ASP.NET web app?
I start with the functional UI, moving from there to the business layer and db (usually in tandem to start with). Design is normally provided in some respect by the client, so I try to apply that e …
0
votes
As an ASP.NET Web Developer using Visual Studio, should I have IIS installed?
Ideally your test server should mirror your production server. That should go without saying. In my opinion, your dev environment should come as close as possible, while fulfilling your needs first …
1
vote
2
votes
Is it possible, to work with ASP.NET 2.0 or ASP.NET 3.5 under Apache 2.x?
The url you link to mentions an old module that is no longer maintained, and doesn't work with Apache 2.2 (according to the comments to that post). Comments further down the page suggest that the …
3
votes
How can i set an image as a background of asp.net page?
Use CSS. Add to the theme if you're using one, or a CSS file...
body {
background-image: url(images/image.png);
}
Best practices recommend having this in a separ …
5
votes
Centre Content Horizontally in Page
Set your div CSS as follows:
#container {
width: 800px;
margin: 0 auto;
}
…
