Ref source for Javascript within .NET

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

Guest

All -

Would someone please provide me with a good how-to information source on how
to imbed JS in an ASP web page.

I am very frustrated right now on the limited ability (or my limited
knowledge) on how to spawn new web pages that I can control the size and
functionality of.

Seems like I would have saved myself alot of trouble by just learning JS.


tks
alan
 
sreejith,


Thanks for your reply but it really did not help me and I suspect others as
well.
Your article mentions nothing of how to use "Windows.open". From what I am
reading on these news groups this is what is needed more than anything else.

Do you have any article or ref on this?


tks
 
Sorry , the question looked to me that you are looking to include client side
javascript in asp.net page :)

there are mainly 2 ways to open a new window
1) window.open (documentation below)

http://msdn.microsoft.com/library/d...hop/author/dhtml/reference/methods/open_1.asp

2) showModalDialog to open a modal window from webpage

http://msdn.microsoft.com/library/d...hop/author/dhtml/reference/methods/open_1.asp

Also you may want to checkout showModelessDialog

http://msdn.microsoft.com/library/d...hop/author/dhtml/reference/methods/open_1.asp


Sreejith
 
Back
Top