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

Mention the namespace that is used to include .net data provider for sql server in .net code?

959


Why and where this web.config file is used?

1088


How can we update records in gridview?Is there any appropriate code for it?

2168


Differentiate between globalization and localization.

985


Describe state management in asp.net?

1055


how to elimainte the similar data from the different tables

2171


Define msil.

960


What is the use of autowireup in asp.net?

1055


What is jade template engine?

1038


Which method is used to force all the validation controls to run?

1038


Can a master page have more than one contentplaceholder?

966


Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?

1047


How do I send an email message from my ASP.NET page?

958


Explain the difference between webfarm and webgardens in .net?

981


Can we add code files of different languages in app_code folder?

1102