web page dialog

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all

How can I create a "web page dialog" in c# ? No template is available.
Any property in an aspx page that I’m missing

thanx
 
Oren,

If you mean new modal browser window, you can make it only on client-side
with javascript call showModalDialog(...).

Eliyahu
 
Is this this particular method that annoys you or the use of JavaScript ?
AFAIK you can't create a modal dialog with HTML alone (if this is what you
are after).

You should be able to simulate a modal form with (requires JavaScript) :
http://developer.netscape.com/viewsource/goodman_modal/goodman_modal.html

If you are after general "dialog" programming (AKA Web Forms in ASP.NET
lingo), try an introduction such as :
http://www.dotnetjunkies.com/quickstart/aspplus/doc/webformsintro.aspx

Patrice
 
it should not be in Javascript...

Do you realize how much JavaScript ASP.Net uses without you writing a scrap
of it? Why should it not be in JavaScript?

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