Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. How to create an webform without toolbar....

How to create an webform without toolbar....

Scheduled Pinned Locked Moved ASP.NET
csharpasp-nettutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    astcws
    wrote on last edited by
    #1

    I use vb language to write asp.net. I don't know how to create a webform(look like messagebox or some popup advertisement....). Thanks very much.

    D 1 Reply Last reply
    0
    • A astcws

      I use vb language to write asp.net. I don't know how to create a webform(look like messagebox or some popup advertisement....). Thanks very much.

      D Offline
      D Offline
      David Flores
      wrote on last edited by
      #2

      Its not the webform that displays the toolbar, its how you open the webform in the browser. Take a look at the jscript for the open function of the window object. basically you will do some like the following:

      <script LANGUAGE="JavaScript">
      var url = "mypage.aspx"; // your url to the webform
      var name = "popup"; // any name for the window, if you want to reuse the window
      var settings = "menubar=no,status=no,resizeable=no,toolbar=no,scrollbars=no"

      window.open(url, name, settings);
      

      </script>

      Hope this helps.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups