|
So there is no element below the container? How do you determine it's lower margin, then?
---
b { font-weight: normal; }
|
|
|
|
|
By the viewport? I just tried sticking an empty div tag at the bottom... odd that it works in IE and Opera.
|
|
|
|
|
I tried your css, and I get a margin below the container in Firefox.
---
b { font-weight: normal; }
|
|
|
|
|
Is this supported. I know of ATLAS but i don't wish to use a dll. does ASP support it?
|
|
|
|
|
Any programming platform for the web supports AJAX. It's the browser that does the real work, the web application only has to answer to requests and return a result, that doesn't differ from a regular web page.
ATLAS is an AJAX library for ASP.NET, you can't use it with ASP.
---
b { font-weight: normal; }
|
|
|
|
|
Hi,
I installed visual studio 2005,abd i opend a new website.In that when i click on design button in default.aspx,the design is not working i.e it's not opening a design window what to do.
Thanks in advance
|
|
|
|
|
So what does happen when you click the Design to switch to the Design view?
|
|
|
|
|
Hi,
The design window is not opened.
|
|
|
|
|
Do you get any error? or it just keeps staying in the Source view?
|
|
|
|
|
Hi,
Iam not getting any error.Keep staying in the source window.
|
|
|
|
|
Hi,
I would like to create a small app that takes a series of characters, japanese for example and converts them to their corresponding unicode NCRs.
So for example, I enter 庡廵式 into a text box, and I would to get back 5ea1,53f5,5f05 (hex), the NCRs.
How could I do this?
/\ |_ E X E GG
|
|
|
|
|
Hi,
I need take decission from the user by diplaying a message box on an asp.net web page.
ex. displaying message box with Yes, No, Cancel buttons. I need to now which button was pressed by the user and I need to write the remaining code accordingly.
please help in this regarding how to achieve it in ASP.Net using C#.
It is very urgent to me, plz treat it as urgent.
Venkata NRao Nekkanti
|
|
|
|
|
You could generate a small web form in a popup window and handle the buttons as appropriate. However since popups are falling in to disfavor and many people block them it might not be the best solution.
Another way would be to create a floating div with the necessary format and controls and handle the events from Javascript, posting back as necessary.
|
|
|
|
|
Hello!
I need help!
How can I validate my ListBox control?
I need validate selected items in ListBox.
if( selected <=3 )
validate=true;
else
validate=false;
HELP.
PLS!!!
Hello from Ukraine!
|
|
|
|
|
<br />
int count = 0;<br />
foreach (ListItem li in ListBox1.Items)<br />
{<br />
if (li.Selected)<br />
count++<br />
}<br />
<br />
return count <= 3;<br />
-- modified at 15:11 Friday 7th July, 2006
Forgot a semicolon.
|
|
|
|
|
I have a class in which I want to write out the trace if there is an error. I added System.Web to the class and I have System.Web referenced in my project. However, the compiler is not recognizing "Trace." I also set the trace to true in my web.config file.
Trace.Write ("Unable to update!");
I can't find any documentation on what else I might be missing here.
|
|
|
|
|
Take a look at this article - toward the bottom is information on ASP.NET tracing.
http://www.15seconds.com/issue/020910.htm[^]
Do you need System.Diagnostics referenced as well?
Does the call need to be Page.Trace.Write()?
|
|
|
|
|
Looks like I did need the System.Diagnostics; it's compiling now. Thanks!
|
|
|
|
|
Can anyone point me to their favorite references / websites for learning the (apparently) dark and mysterious art of laying out asp.net application pages and components. I.E. I want to create some fairly complex and sophisticated pages for an application.
I'm just not getting the layout methodology because I'm setting some controls to 100% and they only extend partway down a single screen full in my browser window, others extend mysteriously way beyond the size of my window even though there is no data in them below a third of a window.
It's like a circus or whack a mole, every change I make seemingly logically sends the whole layout into a mess of unrelated consequences.
Everything I try short of setting an explicit size in pixels seems to go weird on me and I know enough to know that setting an explicit size is wrong.
I think I need a guide for developers that is more web oriented than .net oriented. I want my pages to appear as nicely and usefully as possible on as wide a range of browser window sizes as possible within reasonable limits.
I have no books on the subject so aside from online material if you have any good ref's for books I would appreciate it. (I don't need to learn to program, I just need to learn how to get asp.net pages and components to layout properly and usefully.)
|
|
|
|
|
There are many resources downloadable from the internet however as far as printed books are concerned consider these (and many otyhers):
1. HTML & XHTML: The Definitive Guide, 4th edition published by O'Reilly. ISBN: 0-596-00026-X
2. VB.NET Fundamentals By: Paul D. Sheriff & Ken Getz This is a downloadable PDF E-book available from http://www.pdsa.com[^] This book includes ASP.net
Anyhow, you can always download the free Express Edition Microsoft Visual Web Developer, register the product, and download the PDF tutorial "Build a Website"
modified 1-Aug-19 21:02pm.
|
|
|
|
|
Hi Richard, I'm sorry I should have been more clear, I have a pretty good grasp of html and a full MSDN subscription with all the tools I need. I'm not exactly starting out from complete scratch, I'm just a little out of date on the xhtml stuff but learning rapidly.
What I'm lacking in is a good guide to doing layouting reliably on different browsers I guess is what it comes down to. I've found some info on "Jello mold" layouts that looks promising:
http://www.positioniseverything.net/articles/jello-expo.html[^]
Cheers!
|
|
|
|
|
My apologies for misunderstanding you.
modified 1-Aug-19 21:02pm.
|
|
|
|
|
Well, the era of laying out with tables is almost gone. Google for tutorials on CSS, and DIV layouts.
|
|
|
|
|
hi friends
I want to start doing mobile application can u teel we how to start.
and how many types of mobile programming are there.
Thank you
|
|
|
|
|
constantinejones wrote: how to start
Read documentation/book
|
|
|
|