Results 1 to 2 of 2

Thread: Dialog box use in asp.net

  1. #1
    Join Date
    Nov 2009
    Posts
    6

    Dialog box use in asp.net

    how to use the open file and color daialog box in asp.net vb script. and how can we inseart a inbuild media player in asp page

  2. #2
    Join Date
    May 2008
    Posts
    2,297

    Re: Dialog box use in asp.net

    You can do it by adding a form and then some buttons to the same.

    Private Sub Bg_Click(ByVal sender As System.Object, ByVal c As System.EventArgs) Handles Bg.Click
    ColorDialog1.ShowDialog()
    TxtBox1.BackColor = ColorDialog1.Color
    End Sub

    This would show and open the color dialog control for you.


    Also for inserting a media player may be an example for the same would help you out. A code for the player is given as follows:

    function Ok()
    {
    if (fileBrowser.SelectedItem.Type == "M")
    {
    alert(localization["NoMediaSelectedToInsert"]);
    return;
    }
    if ((trim(document.getElementById("mpWidth").value) == "") ||
    (trim(document.getElementById("mpHeight").value) == ""))
    {
    alert(localization.AlertWidthHeight);
    }
    else
    {
    var mediaObject = previewer.v.Html();

    var oD = document.createElement("D");
    oD.innerHTML = mediaObject;
    var src=oD.firstChild.getAttribute("src");
    var ObjectTag = "<object id='Player' height='120' width='120' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6'><param name='URL' value='" + src + "'><param name='autoStart' value='true'></object>";

    CloseDlg(ObjectTag);
    }
    Last edited by Zecho; 10-12-2009 at 04:56 PM.

Similar Threads

  1. Create dialog box in Javafx
    By Messenger in forum Software Development
    Replies: 5
    Last Post: 26-07-2010, 10:33 AM
  2. How to use Dialog.AccessibleAWTDialog class?
    By Jagruti23 in forum Software Development
    Replies: 5
    Last Post: 23-02-2010, 02:38 PM
  3. Dialog box a problem with my Transcend 4gb PD
    By Balamani in forum Portable Devices
    Replies: 3
    Last Post: 14-11-2009, 06:35 PM
  4. Using the Confirm dialog
    By RockOn in forum Software Development
    Replies: 5
    Last Post: 24-04-2009, 12:03 AM
  5. Dialog TV channels list
    By Karan12 in forum India BroadBand
    Replies: 0
    Last Post: 04-03-2009, 08:35 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,630,269.89564 seconds with 17 queries