Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the Session state management options available with ASP.NET?

1037


What is difference cookie and session?

989


What is asp.net mvc5? : Asp.Net MVC

1033


What are the Types of chaching. How to implement caching

1027


Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?

2810


Explain about secure socket layer?

957


What are the major built-in objects in ASP.NET?

1108


What is the difference between response.redirect and server.transfer?

1037


What is difference between rest and soap?

1119


Why asp.net is better than php?

985


How do we access view state value of this page in the next page?

1001


What is diff. Between abstract class and an interface?

1065


Where web.config file is used?

1101


What is the typical session identifier?

1048


Explain the different parts that constitute ASP.NET application?

1018