I am Using Dreamweaver to design a website of ASP.net

  • Thread starter Thread starter Shun
  • Start date Start date
S

Shun

Hello,

I have design a website using Dreamweaver 8. now the buttons which are added
in dreamweaver 8 I can't see in the Visual Studio .Net (ASP.net) rather i
can see in the browser.

2. Another doubt, when i open in MS Visual Studio .Net in Html format there
is no Form tag what iHave to do, will it give any problem.

Waiting for your reply eagerly.

Regards
Shun
 
news://macromedia.dreamweaver.appdev will help with questions about using
Dreamweaver.

All controls we want to be processed on the server must include and id="..."
and runat="server" like this...

// HTML Control
<input type="button" id="MyButton" runat="server" />

// Web Server Control
<asp:Button id="MyButton" runat="server" />

I think that may be why you do not see the buttons in the designer.
Note you do not want to use HTML controls unless you have to. Use Web Server
controls.

You can write your own Form element. This is all you need...

<form id="form1" runat="server">
....
</form>


--
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/
 
Back
Top