6

こんにちは、私は ASP.NET の初心者です

別のプログラムから設計された html ページがあります。ビジュアル Web 開発者を使用して、html を asp.net aspx Web フォームに変換したいと考えています。

ページは普通に開いているのですが、ボタンを移動するとページのデザインが崩れてしまうなど、レイアウトページのコントロールの移動や置換が難しいです。ページのレイアウトを変更せずに、Visual Web Developer 2010 の aspx/html にボタンまたはテキスト ボックスを挿入するにはどうすればよいですか?

4

1 に答える 1

6

html ページを aspx ページに変換するには、

1. Create a new web form in visual web developer.
2. Copy the content from body of the html file , paste it in body of the aspx page.
3. Similarly copy the script, meta tags from head section of html , paste it in head    section of aspx page.
4.if any external style sheet,Images included with html file, add them appropriately in a folder of your asp.net application.
5.Now try to run the page and check if everything appears well, if not appearing well check the stylesheet and make some small changes.
6.Check at the top of the page asp.net , <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> it is necessary.

練習すれば、css、スタイリング、HTML を完璧に習得できます。

-------------------すべてうまくいくはずです----

コード ビハインドにコントロールが見つからない場合は、マークアップに [runat="server"] 属性を追加します。および は html コントロールであり、サーバー コントロールです。


于 2013-01-22T06:27:34.613 に答える