Click here to Skip to main content
15,891,513 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Comsuming RESTlet Web Service in ASP.NET 3.5 with JSON Parameter Pin
Rajesh Toleti4-Sep-13 0:13
Rajesh Toleti4-Sep-13 0:13 
Questionsend email from contact us web page mvc4 asp.net Pin
SHUMAILA12-Sep-13 0:36
SHUMAILA12-Sep-13 0:36 
SuggestionRe: send email from contact us web page mvc4 asp.net Pin
Richard MacCutchan2-Sep-13 1:31
mveRichard MacCutchan2-Sep-13 1:31 
GeneralRe: send email from contact us web page mvc4 asp.net Pin
Joezer BH9-Sep-13 22:46
professionalJoezer BH9-Sep-13 22:46 
Questionhttp to https Pin
Chandra Sekhar.bs2-Sep-13 0:30
professionalChandra Sekhar.bs2-Sep-13 0:30 
AnswerRe: http to https Pin
AmitGajjar2-Sep-13 20:52
professionalAmitGajjar2-Sep-13 20:52 
Questionproblem with font-face in fire fox Pin
minaalamshahi1-Sep-13 5:52
minaalamshahi1-Sep-13 5:52 
AnswerRe: problem with font-face in fire fox Pin
jkirkerx1-Sep-13 8:43
professionaljkirkerx1-Sep-13 8:43 
I make a dedicated CSS file for each font, this is what I use and it works fine in all browsers, no complaints in 2 years.

/* EN-US_Berylium.css */


@font-face {
    font-family: 'beryliumRG';
    src: url('/fonts/Berylium/berylium_rg-webfont.eot');
    src: url('/fonts/Berylium/berylium_rg-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Berylium/berylium_rg-webfont.woff') format('woff'),
         url('/fonts/Berylium/berylium_rg-webfont.ttf') format('truetype'),
         url('/fonts/Berylium/berylium_rg-webfont.svg#beryliumRG') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'beryliumRG_IT';
    src: url('/fonts/Berylium/berylium_rg_it-webfont.eot');
    src: url('/fonts/Berylium/berylium_rg_it-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Berylium/berylium_rg_it-webfont.woff') format('woff'),
         url('/fonts/Berylium/berylium_rg_it-webfont.ttf') format('truetype'),
         url('/fonts/Berylium/berylium_rg_it-webfont.svg#beryliumRG_IT') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'berylium_BD';
    src: url('/fonts/Berylium/berylium_bd-webfont.eot');
    src: url('/fonts/Berylium/berylium_bd-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Berylium/berylium_bd-webfont.woff') format('woff'),
         url('/fonts/Berylium/berylium_bd-webfont.ttf') format('truetype'),
         url('/fonts/Berylium/berylium_bd-webfont.svg#berylium_BD') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'beryliumBD_IT';
    src: url('/fonts/Berylium/berylium_bd_it-webfont.eot');
    src: url('/fonts/Berylium/berylium_bd_it-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Berylium/berylium_bd_it-webfont.woff') format('woff'),
         url('/fonts/Berylium/berylium_bd_it-webfont.ttf') format('truetype'),
         url('/fonts/Berylium/berylium_bd_it-webfont.svg#beryliumBD_IT') format('svg');
    font-weight: normal;
    font-style: normal;

}


Then I use it in another CSS File

.txt_BeryliumRG
{
    color: rgb(0,0,0);
    font-family: "beryliumRG", Georgia, Serif;
    font-size: 1.2em;
    font-weight: normal;
    text-indent: 0.25em;
    text-align:justify;    
}


modified 1-Sep-13 15:33pm.

GeneralRe: problem with font-face in fire fox Pin
Boipelo1-Sep-13 9:33
Boipelo1-Sep-13 9:33 
GeneralRe: problem with font-face in fire fox Pin
jkirkerx1-Sep-13 10:59
professionaljkirkerx1-Sep-13 10:59 
AnswerRe: problem with font-face in fire fox Pin
Bernhard Hiller2-Sep-13 2:35
Bernhard Hiller2-Sep-13 2:35 
QuestionASP.NET SEARCH BOX Pin
Adrishya31-Aug-13 19:40
Adrishya31-Aug-13 19:40 
AnswerRe: ASP.NET SEARCH BOX Pin
TheUltimateDebugger1-Sep-13 19:29
professionalTheUltimateDebugger1-Sep-13 19:29 
AnswerRe: ASP.NET SEARCH BOX Pin
AmitGajjar2-Sep-13 20:57
professionalAmitGajjar2-Sep-13 20:57 
QuestionREST call problem Pin
devboycpp30-Aug-13 23:01
devboycpp30-Aug-13 23:01 
QuestionSetting ACE is very slow for folder with many files and subfolders. Pin
sumB30-Aug-13 19:12
sumB30-Aug-13 19:12 
AnswerRe: Setting ACE is very slow for folder with many files and subfolders. Pin
Richard MacCutchan30-Aug-13 22:07
mveRichard MacCutchan30-Aug-13 22:07 
GeneralRe: Setting ACE is very slow for folder with many files and subfolders. Pin
sumB1-Sep-13 6:27
sumB1-Sep-13 6:27 
GeneralRe: Setting ACE is very slow for folder with many files and subfolders. Pin
Manfred Rudolf Bihy1-Sep-13 7:39
professionalManfred Rudolf Bihy1-Sep-13 7:39 
QuestionRegarding input controls to use on Forums Pin
Karteek Panakani28-Aug-13 22:32
Karteek Panakani28-Aug-13 22:32 
AnswerRe: Regarding input controls to use on Forums Pin
Richard Deeming29-Aug-13 2:30
mveRichard Deeming29-Aug-13 2:30 
AnswerRe: Regarding input controls to use on Forums Pin
Forbiddenx30-Aug-13 3:49
Forbiddenx30-Aug-13 3:49 
Questionset inputfield value using java in ASP.net Pin
happysoul28-Aug-13 21:45
happysoul28-Aug-13 21:45 
SuggestionRe: set inputfield value using java in ASP.net Pin
Richard Deeming29-Aug-13 2:27
mveRichard Deeming29-Aug-13 2:27 
GeneralRe: set inputfield value using java in ASP.net Pin
happysoul29-Aug-13 2:51
happysoul29-Aug-13 2:51 

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.