Pls Help me out how to convert html page to .aspx page as soon as possible
If you have DreamWeaver then you can open html page and save as .aspx page, Or create a new .aspx page and copy paste designer code from html to aspx page.
Simple Open the html Page.. Right Click and choose View Source.. Copy and Paste the Source and Paste it in your .aspx Page in place of the <html></html> tag..
Note: Please Check whether the HTML is not copyrighted..
madduriaravi...
Member
1 Points
27 Posts
How to Convert Html to .aspx page
Jan 25, 2013 05:07 AM|LINK
Pls Help me out how to convert html page to .aspx page as soon as possible
Rajneesh Ver...
All-Star
38344 Points
6989 Posts
Re: How to Convert Html to .aspx page
Jan 25, 2013 05:24 AM|LINK
If you have DreamWeaver then you can open html page and save as .aspx page, Or create a new .aspx page and copy paste designer code from html to aspx page.
Can see one tool from here: http://htmltextwriter2.codeplex.com/
www.rajneeshverma.com
Keep Forums Clean || Use Alert Moderators.
NadeemZee
Participant
942 Points
179 Posts
Re: How to Convert Html to .aspx page
Jan 25, 2013 05:49 AM|LINK
Add a new page in your project name of page you should manage let "testpage".
after adding the page open the testpage.aspx and in the page you should get all html
left all <%@ Page Language="C#" AutoEventWireup="false" CodeFile="testpage.aspx.cs" Inherits="Report.testpage" %>
now copy your html code from the html page which you have ho convert to .aspx and paste in this testpage.aspx page
now save the html design is ready.
Do FEAR (Face Everything And Rise)
Please mark as Answer if my post helps you..!
geniusvishal
All-Star
15147 Points
2949 Posts
Re: How to Convert Html to .aspx page
Jan 25, 2013 06:16 AM|LINK
Simple Open the html Page.. Right Click and choose View Source.. Copy and Paste the Source and Paste it in your .aspx Page in place of the <html></html> tag..
Note: Please Check whether the HTML is not copyrighted..
Refer:
http://www.ehow.com/how_5458918_convert-html-aspx.html
My Website
www.dotnetvishal.com
Sujeet Saste
Contributor
3014 Points
575 Posts
Re: How to Convert Html to .aspx page
Jan 25, 2013 06:30 AM|LINK
Follow simple steps :
1) Create new .aspx page
2) Copy <head>...</head> from your .html page and replace it to <head>...</head> of .aspx page
3) Copy <body>...</body> from your .html page and replace it to <body>...</body> of .aspx page
4) Press ctrl+s (Save .aspx page)
That's it... You will not receive any error for sure..
Do FEAR (Face Everything And Rise)
Please mark as Answer if my post helps you..!
My Blog
madduriaravi...
Member
1 Points
27 Posts
Re: How to Convert Html to .aspx page
Jan 25, 2013 09:58 AM|LINK
Sujeet gi,
if we like date html control tag are not changing to web control tags????
thanks
Sujeet Saste
Contributor
3014 Points
575 Posts
Re: How to Convert Html to .aspx page
Jan 25, 2013 11:05 AM|LINK
Not getting your point, please explain more clearly...
And let me tell you one thing that, whatever control you use in web page, lastly rendered as html control.
Use of properties may change as per the control at the time of designing. Means <input type="text> of html will be <asp:Textbox> in asp.net ... . .
Do FEAR (Face Everything And Rise)
Please mark as Answer if my post helps you..!
My Blog