Click here to Skip to main content
15,900,110 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: give me the steps Pin
Sulaiman_J18-Apr-14 18:58
Sulaiman_J18-Apr-14 18:58 
QuestionIs it possible to use ASP.NET ProfileCommon in a windows service? Pin
devenv.exe26-Mar-14 21:15
professionaldevenv.exe26-Mar-14 21:15 
AnswerRe: Is it possible to use ASP.NET ProfileCommon in a windows service? Pin
Richard Deeming27-Mar-14 2:26
mveRichard Deeming27-Mar-14 2:26 
QuestionThe Legend hides the Plotted data in Chart control ASP.Net Pin
Kandepu Rajesh26-Mar-14 17:55
Kandepu Rajesh26-Mar-14 17:55 
AnswerRe: The Legend hides the Plotted data in Chart control ASP.Net Pin
Schatak4-Apr-14 3:24
professionalSchatak4-Apr-14 3:24 
QuestionHow to blink text Pin
vasuarya26-Mar-14 0:33
vasuarya26-Mar-14 0:33 
AnswerRe: How to blink text Pin
Kornfeld Eliyahu Peter26-Mar-14 1:15
professionalKornfeld Eliyahu Peter26-Mar-14 1:15 
AnswerRe: How to blink text Pin
Richard Deeming26-Mar-14 2:32
mveRichard Deeming26-Mar-14 2:32 
You can fake it using CSS3 animations:
HTML
<p>This is seriously <span class="blink">NASTY</span>!</p>

CSS
.blink
{
    animation: blink 1s infinite alternate;
}
@keyframes blink 
{
    from 
    {
        opacity: 1;
    }
    to 
    {
        opacity: 0;
    }
}


http://jsfiddle.net/xX9v6/[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionC# Web Forms: Add a context menu to a grid and outside grid also. Pin
AshwiniSH26-Mar-14 0:12
professionalAshwiniSH26-Mar-14 0:12 
AnswerRe: C# Web Forms: Add a context menu to a grid and outside grid also. Pin
Bikash Prakash Dash28-Mar-14 19:58
Bikash Prakash Dash28-Mar-14 19:58 
QuestionAjax Update Panel not working properly when using mutiple triggers contols on it Pin
Yat_desh9025-Mar-14 21:52
Yat_desh9025-Mar-14 21:52 
QuestionRe: Ajax Update Panel not working properly when using mutiple triggers contols on it Pin
Blikkies25-Mar-14 23:33
professionalBlikkies25-Mar-14 23:33 
QuestionWhatsapp group for. NET Developers Pin
rehmanabdurr25-Mar-14 19:32
rehmanabdurr25-Mar-14 19:32 
AnswerRe: Whatsapp group for. NET Developers Pin
Kornfeld Eliyahu Peter25-Mar-14 22:09
professionalKornfeld Eliyahu Peter25-Mar-14 22:09 
QuestionWindows update (KB2894843) makes my ASP.NET web application post back to behave differently Pin
Member 1069366523-Mar-14 18:21
Member 1069366523-Mar-14 18:21 
AnswerRe: Windows update (KB2894843) makes my ASP.NET web application post back to behave differently Pin
Richard Deeming24-Mar-14 3:13
mveRichard Deeming24-Mar-14 3:13 
GeneralRe: Windows update (KB2894843) makes my ASP.NET web application post back to behave differently Pin
Member 1069366524-Mar-14 4:56
Member 1069366524-Mar-14 4:56 
QuestionIHttpModule and Build Action = Compile? Or Content? Pin
Swab.Jat23-Mar-14 1:40
Swab.Jat23-Mar-14 1:40 
Questiontextile cad fabric output simulation Pin
Member 1057081122-Mar-14 1:55
Member 1057081122-Mar-14 1:55 
QuestionInvalid initializer member declarator -- error Pin
miss78621-Mar-14 6:28
miss78621-Mar-14 6:28 
AnswerRe: Invalid initializer member declarator -- error Pin
Richard Deeming21-Mar-14 6:41
mveRichard Deeming21-Mar-14 6:41 
GeneralRe: Invalid initializer member declarator -- error Pin
miss78621-Mar-14 7:54
miss78621-Mar-14 7:54 
Questionasp.net Pin
Member 1063591820-Mar-14 21:40
Member 1063591820-Mar-14 21:40 
AnswerRe: asp.net Pin
Peter Leow20-Mar-14 21:49
professionalPeter Leow20-Mar-14 21:49 
AnswerRe: asp.net Pin
Tom Marvolo Riddle20-Mar-14 22:02
professionalTom Marvolo Riddle20-Mar-14 22:02 

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.