Click here to Skip to main content
15,890,512 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionFOR CREATE A NEW JOB WEBSITE LIKE MODIS [modified] Pin
Kumar Gautam-201222-Apr-10 19:25
Kumar Gautam-201222-Apr-10 19:25 
AnswerRe: FOR CREATE A NEW JOB WEBSITE LIKE MODIS Pin
Sandeep Mewara22-Apr-10 19:42
mveSandeep Mewara22-Apr-10 19:42 
AnswerRe: FOR CREATE A NEW JOB WEBSITE LIKE MODIS Pin
annathor22-Apr-10 20:58
annathor22-Apr-10 20:58 
JokeRe: FOR CREATE A NEW JOB WEBSITE LIKE MODIS Pin
Abhijit Jana22-Apr-10 21:04
professionalAbhijit Jana22-Apr-10 21:04 
GeneralRe: FOR CREATE A NEW JOB WEBSITE LIKE MODIS Pin
Estys22-Apr-10 21:33
Estys22-Apr-10 21:33 
AnswerRe: FOR CREATE A NEW JOB WEBSITE LIKE MODIS Pin
Sandesh M Patil22-Apr-10 22:37
Sandesh M Patil22-Apr-10 22:37 
QuestionImplimeting indian regional languages in asp.net web application Pin
arunpal22-Apr-10 18:52
arunpal22-Apr-10 18:52 
AnswerRe: Implimeting indian regional languages in asp.net web application Pin
Sandeep Mewara22-Apr-10 19:29
mveSandeep Mewara22-Apr-10 19:29 
The logic behind regional language is to convert the regional text into unicode (the language supported by browser)and this can be done through language converters.

Second way to do is make .eot or .pfr files of your font and access that file in your ASP.NET page.
You have to download WEFT by which you can make eot files of your font.
Just search in Google or you can get it on Microsoft site also.

Something like:
*********************************
//In head tag of page add this code 
<style type="text/css" >
  @font-face 
  {
    font-family: AkrutiDevYoginiUnicode;//Converted font name
    font-style: italic;
    font-weight: normal;
    src: url(AKRUTID0.eot); //Your eot file.
   }
</style>

GeneralRe: Implimeting indian regional languages in asp.net web application Pin
arunpal28-Apr-10 21:18
arunpal28-Apr-10 21:18 
QuestionAdding and updating rows in a GridView Pin
Rob Bigg22-Apr-10 18:08
Rob Bigg22-Apr-10 18:08 
AnswerRe: Adding and updating rows in a GridView Pin
Sandeep Mewara22-Apr-10 19:46
mveSandeep Mewara22-Apr-10 19:46 
GeneralRe: Adding and updating rows in a GridView Pin
Rob Bigg23-Apr-10 7:40
Rob Bigg23-Apr-10 7:40 
GeneralRe: Adding and updating rows in a GridView Pin
Sandeep Mewara23-Apr-10 8:13
mveSandeep Mewara23-Apr-10 8:13 
QuestionTextBox Retains old data on dialog reloading Pin
FUNCTOR9922-Apr-10 14:27
FUNCTOR9922-Apr-10 14:27 
AnswerRe: TextBox Retains old data on dialog reloading Pin
Arindam Tewary22-Apr-10 22:15
professionalArindam Tewary22-Apr-10 22:15 
GeneralRe: TextBox Retains old data on dialog reloading Pin
FUNCTOR9923-Apr-10 3:32
FUNCTOR9923-Apr-10 3:32 
AnswerRe: TextBox Retains old data on dialog reloading Pin
Arindam Tewary25-Apr-10 10:31
professionalArindam Tewary25-Apr-10 10:31 
GeneralRe: TextBox Retains old data on dialog reloading Pin
FUNCTOR9926-Apr-10 3:36
FUNCTOR9926-Apr-10 3:36 
Questionhow to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 10:27
Andraw11122-Apr-10 10:27 
AnswerRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 11:15
professionalJamil Hallal22-Apr-10 11:15 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 11:29
Andraw11122-Apr-10 11:29 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 11:44
professionalJamil Hallal22-Apr-10 11:44 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Andraw11122-Apr-10 12:12
Andraw11122-Apr-10 12:12 
GeneralRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 12:36
professionalJamil Hallal22-Apr-10 12:36 
AnswerRe: how to make gridview column text no wrap and how to create a resizable column header Pin
Jamil Hallal22-Apr-10 11:20
professionalJamil Hallal22-Apr-10 11:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.