如何将我的asp.net网页分成2个网页?

发布于 2024-08-02 03:51:50 字数 194 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

漆黑的白昼 2024-08-09 03:51:50

或者像这样编码 div:

<div class="wrapper">
  <div class="left">
    button 1
    button 2
  </div>

  <div class="right">
    a picture
  </div>
</div>

然后 css 是:

.wrapper {
  width: 800px;
} 

.left {
  float: left;
  width: 200px;
}

.right {
  float: right;
  width: 600px;
}

您可以将宽度更改为您想要的任何宽度,只需确保 .left 宽度 + .right 宽度不大于 .wrapper 宽度。 还要确保列的内容不会使它们变宽(即,如果您的图片宽度超过 600 像素,它也会破坏布局)。

Or code the divs like so:

<div class="wrapper">
  <div class="left">
    button 1
    button 2
  </div>

  <div class="right">
    a picture
  </div>
</div>

Then the css is:

.wrapper {
  width: 800px;
} 

.left {
  float: left;
  width: 200px;
}

.right {
  float: right;
  width: 600px;
}

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).

疯到世界奔溃 2024-08-09 03:51:50

您可以尝试发布一些代码,以便我们可以了解发生了什么。 这听起来像是一个比 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#.

回忆那么伤 2024-08-09 03:51:50

如果您将页面分为两个网页,那么您可以在 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

↘紸啶 2024-08-09 03:51:50

你想要一张桌子:)

<table>
<tr>
 <td>button 1</td>
 <td>a picture</td>
</tr>
<tr>
 <td>button 2</td>
 <td>...</td>
</tr>
</table>

You want a table :)

<table>
<tr>
 <td>button 1</td>
 <td>a picture</td>
</tr>
<tr>
 <td>button 2</td>
 <td>...</td>
</tr>
</table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文