<% if(somecondition) { %>
some html
<% } %>
Thursday, November 12, 2015
asp.net If statement in aspx page
Wednesday, November 11, 2015
Angularjs and asp.net MVC
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-(spa)-with-aspnet-web-api-and-angularjs
http://www.wintellect.com/devcenter/dbaskin/cookbook-for-asp-net-mvc-and-angular-js-web-apps
https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&sqi=2&ved=0CDwQFjAF&url=http%3A%2F%2Fwww.dotnetcurry.com%2Fshowarticle.aspx%3FID%3D1049&ei=Meo1VbAgg-nyBYPXgYAP&usg=AFQjCNEoh930PqlLn1tE1oFUiIyzd_FC9Q&sig2=MQbUjNDCbgB1E1uOyh_CZA&bvm=bv.91071109,d.dGc&cad=rja
http://www.dotnetcurry.com/showarticle.aspx?ID=1049
http://www.wintellect.com/devcenter/dbaskin/cookbook-for-asp-net-mvc-and-angular-js-web-apps
https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&sqi=2&ved=0CDwQFjAF&url=http%3A%2F%2Fwww.dotnetcurry.com%2Fshowarticle.aspx%3FID%3D1049&ei=Meo1VbAgg-nyBYPXgYAP&usg=AFQjCNEoh930PqlLn1tE1oFUiIyzd_FC9Q&sig2=MQbUjNDCbgB1E1uOyh_CZA&bvm=bv.91071109,d.dGc&cad=rja
http://www.dotnetcurry.com/showarticle.aspx?ID=1049
jquery datatable remove search filter
$(document).ready(
function
() {
$(
'#example'
).dataTable( {
"bFilter"
:
false
} );
} );
Friday, October 30, 2015
Remove duplicate objects in an array of object in JavaScript
function remove_duplicates(objectsArray) {
var usedObjects = {};
for (var i=objectsArray.length - 1;i>=0;i--) {
var so = JSON.stringify(objectsArray[i]);
if (usedObjects[so]) {
objectsArray.splice(i, 1);
} else {
usedObjects[so] = true;
}
}
return objectsArray;
}
Monday, September 28, 2015
telrik kendo grid edit command event javascript
command: [{ name: "edit", text: "edit", click: myFunction }, "destroy"],
function myFunction(e) {
alert("deleted pressed!");
}
function myFunction(e) {
alert("deleted pressed!");
}
Start Task Scheduler
To Run Task Scheduler using the Windows interface
- Click the Start button.
- Click Control Panel .
- Click System and Maintenance .
- Click Administrative Tools .
- Double-click Task Scheduler .
To Run Task Scheduler from the Command Line
- Open a command prompt. To open a command prompt, click Start , click All Programs , click Accessories , and then click Command Prompt .
- At the command prompt, type Taskschd.msc .
SQL alter table modify column
ALTER TABLE Persons
ALTER COLUMN DateOfBirth year
ALTER COLUMN DateOfBirth year
Subscribe to:
Posts (Atom)