we can able to display a MessageBox in asp .net without
using any script langages?

Answers were Sorted based on User's Feedback



we can able to display a MessageBox in asp .net without using any script langages?..

Answer / sandeep

validation summary control

Is This Answer Correct ?    27 Yes 4 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / lakshmikanth

yes we can add first click on add reference and

add "system.windows.froms" dll in windows which pops up

then start using

System.windows.forms.messagebox.show("i love
india","Lakshmikanth");

Is This Answer Correct ?    20 Yes 7 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / ananthu

Yes . use vb.net has Messagebox

Is This Answer Correct ?    13 Yes 7 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / karan munjal

No, We can't able to display a msgbox in asp.nt

Is This Answer Correct ?    16 Yes 12 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / ajit

using system.Text;(namespace)
and applying following code
string myStringVariable = string.Empty;

myStringVariable = "Welcome";



ClientScript.RegisterStartupScript(this.GetType(),
"myalert", "alert('" + myStringVariable + "');", true);

on button click...

Is This Answer Correct ?    1 Yes 0 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / rathika.k

using System;
using System.Runtime.InteropServices;

namespace ExternKey
{
class Class1
{
[DllImport("User32.dll")]
public static extern int MessageBox(int h,
string m, string c,int type);
static void Main(string[] args)
{
string mystring;
Console.Write("Enter Your
Message : ");
mystring = Console.ReadLine();
MessageBox(0,mystring,"Message",0);
}
}
}

Try like this. It will workout without using any Script
Language.

Is This Answer Correct ?    1 Yes 1 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / raks

No, We can't able to display a msgbox in asp.net..

Is This Answer Correct ?    1 Yes 1 No

we can able to display a MessageBox in asp .net without using any script langages?..

Answer / mohit jethva

by using DLLImport(USER32.dll)
you can use msgbox in .net

Is This Answer Correct ?    7 Yes 9 No

Post New Answer

More ASP.NET Interview Questions

Which adapter should you use, if you want to get the data from an access database?

0 Answers  


What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?

0 Answers  


when a request is made in Life cycle of ASP.NET page .

0 Answers  


what is the cursor

1 Answers   Wipro,


What is data binding in asp net?

0 Answers  






Explain a program using razor view engine to create a simple application? : asp.net mvc

0 Answers  


Whats an assembly

2 Answers   IBM,


Explain significance of routing? : asp.net mvc

0 Answers  


What is the syntax for datagrid and specifying columns ?

2 Answers   Microsoft,


What is interval time of GC in .net

2 Answers  


What data type does the Range Validator control support?

5 Answers  


what is use of doctype tag in asp.net

1 Answers   TCS, Wipro,


Categories