- LEONAX
- CAMPER
- It's a SONY
- The Silver Elite
| .append($("<option>", { "text": "-Please Select-" })) | |
| @foreach (var item in Model.XXX) | |
| { | |
| @: .append($("<option>", { "text": "@item.Title", "value": @item.Id })) | |
| } |
| Declare @TableName sysname = 'REPLACE_WITH_YOUR_TABLE_NAME' | |
| declare @result varchar(max) = 'public class ' + @TableName + ' | |
| {' | |
| select @result = @result + ' | |
| public ' + ColumnType + ' ' + ColumnName + ' { get; set; } | |
| ' | |
| from | |
| ( | |
| select |
| public class AlertViewModel | |
| { | |
| public string AlertType { get; set; } | |
| public string AlertTitle { get; set; } | |
| public string AlertMessage { get; set; } | |
| public AlertViewModel(string type, string title, string message) | |
| { | |
| AlertType = type; | |
| AlertTitle = title; |
| <div class="row"> | |
| <div class="col-sm-6"> | |
| </div> | |
| <div class="col-sm-6"> | |
| </div> | |
| </div> |
| #include "Includes.h" | |
| using namespace std; | |
| void display(void); | |
| void myTimer(int id); | |
| void registerCallbacks(); | |
| /* Setup Data */ | |
| // initialize a setup object |
| #include <Windows.h> //Not Including results in error C3861: 'exit': identifier not found | |
| #include <glut.h> //OpenGL Library | |
| #include <iostream> //Not Including Results in error C2039: 'cout' : is not a member of 'std' | |
| #include "RGBA.h" //Picture Loading Library --- Requires Windows.h && iostream to work. Better than pixMap.h | |
| #define PI 3.1415926535898 | |
| //Function Headers | |
| void myInit(void); | |
| void myDisplay(void); |