473,785 Members | 2,987 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HTML seems double-spaced

When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do I
have to make them rows of a table and size them closer? Is this the only
way?
Nov 18 '05 #1
6 1432
In the VS.Net IDE, hitting the ENTER key creates a <p> (paragraph) tag. For
single spacing, use a <br> tag. In the VS.Net IDE, this can be done in
Design View by using SHIFT|ENTER.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <I-*********@Nowhe re.com> wrote in message
news:#j******** ******@tk2msftn gp13.phx.gbl...
When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do I have to make them rows of a table and size them closer? Is this the only
way?

Nov 18 '05 #2
Hi,
When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do I have to make them rows of a table and size them closer? Is this the only
way?


<ENTER> inserts a <P> tag. What you need is a <BR> tag that can be inserted
by pressing <SHIFT><ENTER >.

Steven

- - -
Nov 18 '05 #3
Kevin, you are a great asset to this newsgroup. Thanks, as usual.

"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:Ob******** ******@tk2msftn gp13.phx.gbl...
In the VS.Net IDE, hitting the ENTER key creates a <p> (paragraph) tag. For single spacing, use a <br> tag. In the VS.Net IDE, this can be done in
Design View by using SHIFT|ENTER.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <I-*********@Nowhe re.com> wrote in message
news:#j******** ******@tk2msftn gp13.phx.gbl...
When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do
I
have to make them rows of a table and size them closer? Is this the

only way?


Nov 18 '05 #4
And you, sir, are very kind!

You're welcome!

--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <Ro************ ************@ju no.com> wrote in message
news:ud******** ******@TK2MSFTN GP11.phx.gbl...
Kevin, you are a great asset to this newsgroup. Thanks, as usual.

"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:Ob******** ******@tk2msftn gp13.phx.gbl...
In the VS.Net IDE, hitting the ENTER key creates a <p> (paragraph) tag. For
single spacing, use a <br> tag. In the VS.Net IDE, this can be done in
Design View by using SHIFT|ENTER.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <I-*********@Nowhe re.com> wrote in message
news:#j******** ******@tk2msftn gp13.phx.gbl...
When edit a page in page-layout, if you hit the <ENTER> button it always seems double spaced. If I want the controls/text to be closer
together do
I
have to make them rows of a table and size them closer? Is this the

only way?



Nov 18 '05 #5
Kevin, you are a great asset to this newsgroup. Thanks, as usual.

"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:Ob******** ******@tk2msftn gp13.phx.gbl...
In the VS.Net IDE, hitting the ENTER key creates a <p> (paragraph) tag. For single spacing, use a <br> tag. In the VS.Net IDE, this can be done in
Design View by using SHIFT|ENTER.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <I-*********@Nowhe re.com> wrote in message
news:#j******** ******@tk2msftn gp13.phx.gbl...
When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do
I
have to make them rows of a table and size them closer? Is this the

only way?


Nov 18 '05 #6
And you, sir, are very kind!

You're welcome!

--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <Ro************ ************@ju no.com> wrote in message
news:ud******** ******@TK2MSFTN GP11.phx.gbl...
Kevin, you are a great asset to this newsgroup. Thanks, as usual.

"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:Ob******** ******@tk2msftn gp13.phx.gbl...
In the VS.Net IDE, hitting the ENTER key creates a <p> (paragraph) tag. For
single spacing, use a <br> tag. In the VS.Net IDE, this can be done in
Design View by using SHIFT|ENTER.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"VB Programmer" <I-*********@Nowhe re.com> wrote in message
news:#j******** ******@tk2msftn gp13.phx.gbl...
When edit a page in page-layout, if you hit the <ENTER> button it always seems double spaced. If I want the controls/text to be closer
together do
I
have to make them rows of a table and size them closer? Is this the

only way?



Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
3800
by: Rainmaker | last post by:
Greetings, I have not been able to find the documentation that will allow me to insert php code inside the html code in the $message block in the mail() function. Using the example in the help file: <?php /* recipients */ $to = "valid@email.add" . ", " ; // note the comma $to .= $_POST;
1
21534
by: Myrilath | last post by:
I was just wondering how I should go about printing an html document. I can read it in and print it out as source but I would like to print it as it should display. At the moment I hace been having it scan the source for tags and set formatting based on them. The problem with this is it is long, slow and means I have to manually draw tables and coloured backgrounds. I know I am probably doing it the long hard way but the only nfo I keep...
4
2829
by: Dennis M. Marks | last post by:
I generate a SELECT list dynamically by taking items from a table. I have DOCUMENT.WRITE statements that write a combination of literals and variables including < and > characters. The HTML seems to work all right but validators show errors of having a closing > without an opening <. Even though these are in DOCUMENT.WRITE statements within quotes they are still flagged as errors. Is there any way around this. I have tried HTML entities...
4
6536
by: Ryan | last post by:
Hello, I have a standard HTML button on an aspx web form that I have set to runat server. The button is named reset1 and its tag is as follows: <INPUT id="btnReset1" style="WIDTH: 60px; HEIGHT: 24px" type="reset" value="Reset" name="btnReset1" runat="server"> Using Interdev I then double click the button in design view and in the code behind page (aspx.vb) have the following:
10
3164
by: Coleen | last post by:
Hi all :-) I have a weird formatting problem with an HTML table that I am populating using VB.Net and HTML. Here is the snippet of code for the cell I'm trying to format: Dim ld_tot_pet_clean_fee_calc As Double ld_tot_pet_clean_fee_calc = li_net_total_calc * 0.0075 ld_tot_pet_clean_fee = lo_misc_func.FormatMC(ld_tot_pet_clean_fee_calc, "D") Session("tot_pet_clean_fee") = lo_misc_func.FormatMC(ld_tot_pet_clean_fee, "D")...
1
2743
by: desi.american | last post by:
I have a dynamically generates ASPX page with tables and data. Depending on user selection, the same page can be viewed as a simple web page (rendered in HTML) or as an excel spreadsheet. If the user chooses to view the page as an excel sheet, I attach the following line of code in C# in the Page_Load method. Response.ContentType = "application/vnd.ms-excel"; All this works fine. But some of cells read nvarchar fields from a database...
14
1412
by: ian.smith | last post by:
I have a small sellection of code here. When the "button1_Click" is called the performance is quite poor (~ 0.5 sec). Only thing is I am not really doing anything!! In C++ the same thing takes ~ 0 seconds to execute!!. The List<Pumpicle> is faster than ArrayList and I convert the List to an array before access. It just seems to be something like unboxing the doubles out of the Pumpicle class. Any ideas?? PumpicleContainer pc = null; ...
1
1888
by: Kenneth McDonald | last post by:
I'm writing a program that will parse HTML and (mostly) convert it to MediaWiki format. The two Python modules I'm aware of to do this are HTMLParser and htmllib. However, I'm currently experiencing either real or conceptual difficulty with both, and was wondering if I could get some advice. The problem I'm having with HTMLParser is simple; I don't seem to be getting the actual text in the HTML document. I've implemented the do_data...
4
5628
by: Gert Conradie | last post by:
I need to list all the key/value pairs of and HTML tag. I already have the complete tag as an text string. For example: (Worst case scenario where standards was not followed in the past) <myTag key1="aaa" key2 = "bbb" key3='ccc' key4=444 key5= 555 key5="Please click here" > I end up with two versions, each with its own flaw and I cant seems to merge them:
8
3353
by: rn5a | last post by:
I have a HTML page named Index.html which is divided into 3 frames. The URL of 2 of the frames are HTML pages but the 3rd frame houses a ASP page. Now when I go to Windows Explorer, navigate to the folder in which the all the 4 files (3 HTML + 1 ASP) reside & select Index.html (by clicking with the mouse or by using the arrow keys on the keyboard), strangely the Windows "File Download" dialog box (with 'Open', 'Save', 'Cancel', 'More...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10327
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5381
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.