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

What is a Repeater Control and how does it works? and what is the diffrence b/w Gridview,datalist and repeater control?

2 Answers   USi,


hi ans dis qstn. "what is d max size of query string. If it exceeds does it give error. if yes wt error it gvs, if no gv the reason" thnx in advance

3 Answers  


Where would you use an IHttpModule, and what are the limitations of anyapproach you might take in implementing one?

1 Answers   Siebel Systems,


What ports must be open for DCOM over a firewall? What is the purpose of Port 135?

0 Answers  


What is _viewstart?

0 Answers  


What type of code, client-side or server-side, is found in a code-behind file of a Web page?

0 Answers   MindCracker,


how can we maintain security in soted procedure?

1 Answers  


How do you get records number from 5 to 15 from a dataset of 100 records?

3 Answers   Syntax Softtech,


can sn.exe can be used before gacutil.exe

2 Answers   Accenture,


Is it possible for me to change my aspx file extension to some other name?

0 Answers  


Explain about asp.net caching?

0 Answers  


What are httphandlers and httpmodules and difference between them?

0 Answers  


Categories