Posts Tagged ‘Asp.net’

Asp.net Conflict With Adsl Connection !?!?

July 13th, 2010

I use to use ASP.Net in my computer and i don’t have internet connection in this computer .
but a few day ago , I connect this computer to ADSL Router Modem and connect to internet .
but my programs in http://localhost can’t run , and have Visual Stedio to run this programs …
plus my IIS is still running …
how should i fix this problem ?

Whats The Diff Beween Php And Asp.net?

July 12th, 2010

why nowa days many websites are started moving towards …..php
….if u see php takes huge time to create a website because we need to write the code for each and everything……but in asp.net its just drag and drop only……

Heavy Metal Fonts

What Is Visual Basic .net; Asp.net And Ado.net?

February 28th, 2010

I want to learn to use VB to create applications to accessing data from other database websites. Are any of the above appropriate for me to learn ?
(I use Visual Basic about 6 years ago, but not with database application over the internet).
Thanks !

Website Developed In Asp.net Not Running In Firefox?

February 27th, 2010

I have developed a website in asp.net and uploaded same to the server. It is running good in Internet explorer but when i am opening it in firefox home page comes with following line.

I don’t know what went wrong, plz help

How To Create Tamil Website Using Asp.net?

February 27th, 2010

how to create tamil website using asp.net
now i am developing tamil website but i nave no idea for developing tamil website. so that i am asking this question

Hi I Am An Web Programmer In Domain Asp.net. Working In India. How Can I Get Recruited In Dubai?

February 26th, 2010

And please let me know the process and hurdels i face for that process.And wot is the general salary any body can get in dubai for a web programmer. Thank you

Where Can I Get Information On Image Compression Tools That I Can Add In My Asp.net Project To Compress Image?

February 26th, 2010

.NET has built in compression classes in the System.IO.Compression namespace.
A more simple solution would be to set up GZIP or Deflate compression within IIS.

What’s The Different Between Asp.net 2.0 And Asp.net 3.0?

February 25th, 2010

It’s hard to catch up with microsoft.
I am using ASP.NET 2.0 and now we are talking about 3.0?
What’s new?

How Could Implement A Confirm Massage For Link Button In The Asp.net ( Using Visual Stdio 2003) Data Grid?

February 24th, 2010

Inject the JavaScript code from your code behind within the Grid_DataBound event
protected void Grid_ItemDataBound ( object sender, System. Web. UI. WebControls. DataGridItemEventArgs e )
{
if( ( e.Item. ItemType == ListItemType. Item) || ( e.Item. ItemType == ListItemType. AlternatingItem ) || (e.Item. ItemType == ListItemType .SelectedItem) ) {
// reference your button and set its onclick client side event
//
( (LinkButton) e. Item. FindControl(”YourButtonId”) ).Attributes["onclick"] = ” return confirm ( ‘Are you sure you want to delete?’ ) “;
}
}
Don’t forget to wire the DataBound event to your Grid!
Hope this helps.