Click here to Skip to main content
15,920,956 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Angularjs is not refreshing data on the CSHTML page Pin
indian1431-Jul-16 4:15
indian1431-Jul-16 4:15 
GeneralRe: Angularjs is not refreshing data on the CSHTML page Pin
John C Rayan4-Jul-16 0:22
professionalJohn C Rayan4-Jul-16 0:22 
QuestionWhen to use ASP.NET Webforms, MVC, Web API Pin
larsp77729-Jun-16 0:04
larsp77729-Jun-16 0:04 
AnswerRe: When to use ASP.NET Webforms, MVC, Web API Pin
F-ES Sitecore30-Jun-16 1:03
professionalF-ES Sitecore30-Jun-16 1:03 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
larsp77730-Jun-16 1:37
larsp77730-Jun-16 1:37 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
F-ES Sitecore30-Jun-16 2:12
professionalF-ES Sitecore30-Jun-16 2:12 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
larsp77730-Jun-16 2:22
larsp77730-Jun-16 2:22 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
F-ES Sitecore30-Jun-16 3:02
professionalF-ES Sitecore30-Jun-16 3:02 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
larsp77730-Jun-16 3:13
larsp77730-Jun-16 3:13 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
Ronald.A11-Jul-16 4:05
Ronald.A11-Jul-16 4:05 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
Ronald.A11-Jul-16 3:47
Ronald.A11-Jul-16 3:47 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
larsp77711-Jul-16 3:56
larsp77711-Jul-16 3:56 
GeneralRe: When to use ASP.NET Webforms, MVC, Web API Pin
Ronald.A11-Jul-16 4:03
Ronald.A11-Jul-16 4:03 
QuestionLooking for help implementing a progress bar in ASP Pin
turbosupramk328-Jun-16 9:35
turbosupramk328-Jun-16 9:35 
AnswerRe: Looking for help implementing a progress bar in ASP Pin
turbosupramk328-Jun-16 11:05
turbosupramk328-Jun-16 11:05 
GeneralRe: Looking for help implementing a progress bar in ASP Pin
trust trinity4-Jul-16 8:27
trust trinity4-Jul-16 8:27 
<h2>Dynamic Progress Bar</h2>

<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar w3-green" style="width:1%"></div>
</div>
<br>

<button class="w3-btn w3-dark-grey" onclick="move()">Click Me</button>

<script>
function move() {
var elem = document.getElementById("myBar");
var width = 1;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + '%';
}
}
}
</script>
trust mauchaza #facebook

QuestionHow can I get the query to execute in my .NET application as quickly as in SSMS? Pin
VishwaKL27-Jun-16 19:39
VishwaKL27-Jun-16 19:39 
AnswerRe: How can I get the query to execute in my .NET application as quickly as in SSMS? Pin
Richard Deeming28-Jun-16 1:39
mveRichard Deeming28-Jun-16 1:39 
AnswerRe: How can I get the query to execute in my .NET application as quickly as in SSMS? Pin
ZurdoDev28-Jun-16 4:39
professionalZurdoDev28-Jun-16 4:39 
GeneralRe: How can I get the query to execute in my .NET application as quickly as in SSMS? Pin
VishwaKL29-Jun-16 20:33
VishwaKL29-Jun-16 20:33 
GeneralRe: How can I get the query to execute in my .NET application as quickly as in SSMS? Pin
ZurdoDev30-Jun-16 1:11
professionalZurdoDev30-Jun-16 1:11 
QuestionInternet Error script error while navigating to a URL Pin
srikrishnathanthri27-Jun-16 18:59
srikrishnathanthri27-Jun-16 18:59 
AnswerRe: Internet Error script error while navigating to a URL Pin
Richard Deeming28-Jun-16 1:36
mveRichard Deeming28-Jun-16 1:36 
GeneralRe: Internet Error script error while navigating to a URL Pin
srikrishnathanthri28-Jun-16 1:48
srikrishnathanthri28-Jun-16 1:48 
GeneralRe: Internet Error script error while navigating to a URL Pin
Richard Deeming28-Jun-16 2:00
mveRichard Deeming28-Jun-16 2:00 

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.