如何将我的asp.net网页分成2个网页?
我正在使用 asp.net 和 c# 编写网页。
我想将我的网页分为两列,例如在其中一列中我将有按钮来更改另一列中的视图,而无需“踩踏”第一列的内容。 示例:
按钮 1 | :) 图片...
按钮 2 |
我尝试使用除法,但我认为我没有正确使用它们。 任何帮助都会很棒! 谢谢!!!
I am writing a webPage using asp.net and c#.
I want to divide my webpage into 2 columns such as in one I will have buttons that change the view in the other column, without "stepping on" the content of the first column.
example:
button 1 | :) a picture...
button 2 |
I tried to use divisions but I think I'm not using them properly.
any help would be great!
thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或者像这样编码 div:
然后 css 是:
您可以将宽度更改为您想要的任何宽度,只需确保 .left 宽度 + .right 宽度不大于 .wrapper 宽度。 还要确保列的内容不会使它们变宽(即,如果您的图片宽度超过 600 像素,它也会破坏布局)。
Or code the divs like so:
Then the css is:
You can change the widths to whatever you want, just make sure that .left width + .right width isn't greater than .wrapper width. Also make sure that the content of the columns doesn't make them wider (i.e. if your picture is wider than 600px, it'll also break the layout).
您可以尝试发布一些代码,以便我们可以了解发生了什么。 这听起来像是一个比 asp.net 和 c# 更普遍的 css 问题。
You might try posting a bit of code so that we can see what is going on. It sounds like a css problem which is more general than asp.net and c#.
如果您将页面分为两个网页,那么您可以在 javascript 中使用框架
如需参考,请访问 www.w3schools.com
if you divide your page to two web page then you use frame in javascript
for it's refrence go to www.w3schools.com
你想要一张桌子:)
You want a table :)