Re: Using Owin/Identity with Existing Database Fields Requirement Programming Web Development by pritaeas Check the link in my reply here: https://www.daniweb.com/web-development/aspnet/threads/490197/asp-net-mvc5-identity Helped me a lot, but I removed owin and identity completely. I also found [this one](http://weblog.west-wind.com/posts/2015/Apr/29/Adding-minimal-OWIN-Identity-Authentication-to-an-Existing-ASPNET-MVC-Application) later on. Re: Using Owin/Identity with Existing Database Fields Requirement Programming Web Development by Stefano Mtangoo Thanks Pritaeas, Its interesting that you removed OWIN and the Identity. What did you use then? I will visit the links and see what I can make out of them! Re: Using Owin/Identity with Existing Database Fields Requirement Programming Web Development by pritaeas > What did you use then? It was partly copied from a FormsAuthentication application on an existing database, so the users and roles were a "roll-your-own" solution. I had no need for OWIN or Identity on such a small project. It was just overkill. Print Preview Programming Web Development by raq_0619 … if (!document.importNode) { oWin.document.open(); oWin.document.write('<span id=&…) nTA.value = oTA.value } } oWin.focus(); oWin.print(); oWin.close(); } </script> <… Tic Tac Toe with Minimax Algorithm Programming Software Development by louisdinh …= XWIN; } else if (current_symbol == 'O') { state = OWIN; } } else { // Check to see if there are positions …(control.get_state() == control.XWIN || control.get_state() == control.OWIN || control.get_state() == control.DRAW) { control.find_winner(); control.… A Simple Tic Tac Toe: C Programming Programming Software Development by mixmagz …, code[100], uninst, colcho, quit; int xwin=0, owin=0, gameno=0, race2, fullver, pat=8, xs=10…sleep(2); if(ver=='t' || ver=='T') { owin++; if(owin==race2) { textcolor(os); gotoxy(34,13);cprintf("o… textcolor(7); gotoxy(39,12);cprintf("- %d", owin); gotoxy(39,13);cprintf("- %d", xwin); … File upload errors Programming Web Development by Blueie … Imports Microsoft.AspNet.Identity.EntityFramework Imports Microsoft.AspNet.Identity.Owin Imports Microsoft.Owin.Security Imports System.Web.Security Imports System.Web.UI… tic-tac-toe game? Programming Software Development by kahn1 …' == c && c == e && e == g); bool oWin = (oWinRow0 || oWinRow1 || oWinRow2 || oWinCol0 || oWinCol1 || oWinCol2 || oWinDia0 || oWinDia1); std::cout… Re: tic-tac-toe game? Programming Software Development by VernonDozier …' == c && c == e && e == g); bool oWin = (oWinRow0 || oWinRow1 || oWinRow2 || oWinCol0 || oWinCol1 || oWinCol2 || oWinDia0 || oWinDia1); std::cout… Re: tic-tac-toe game? Programming Software Development by kahn1 …' == c && c == e && e == g); bool oWin = (oWinRow0 || oWinRow1 || oWinRow2 || oWinCol0 || oWinCol1 || oWinCol2 || oWinDia0 || oWinDia1); std::cout… Thomas Brattli's window script in FF 3 Programming Web Development by jmasta …, but in firefox, I get some errors. First is "oWin[i].oWindow.moveIt is not a function". I don… C++ move validity for tic tac toe Programming Software Development by lucyfersdaddy …"; } checkout = checkmove(); } } bool ticTacToe::done() { int xwin=0; int owin=0; int cats=0; bool end = false; if (board[0… Re: Print webpage Programming Web Development by fxm … if (!document.importNode) { oWin.document.open(); oWin.document.write('<span id=&…) nTA.value = oTA.value } } oWin.focus(); oWin.print(); oWin.close(); } </script> <… Re: Print webpage Programming Web Development by fxm …) var oSel = document.getElementById(iSel) nSel.selectedIndex = oSel.selectedIndex } } oWin.focus(); oWin.print(); oWin.close(); } </script> <title></title… Re: Print webpage Programming Web Development by fxm …= document.getElementById(sId); var oWin = window.open('', "…oWin.document.writeln(oPrn.innerHTML); } else { oWin.document.body.appendChild(oWin.document.importNode(oPrn, true)); } oWin.document.close(); oWin.focus(); oWin.print(); oWin Re: Print webpage Programming Web Development by fxm ….open('', "quickprint"); oWin.document.close(); oWin.document.body.appendChild(oWin.document.importNode(oPrn, true)); oWin.focus(); oWin.print(); oWin.close(); } } </script> <… Re: Print webpage Programming Web Development by fxm … = document.getElementById(sId); var oWin = window.open('', "quickprint"); oWin.document.writeln(oPrn.innerHTML); oWin.document.close(); oWin.focus(); oWin.print(); oWin.close(); } </script… Re: Date and name not declared errors? Programming Web Development by Blueie …Identity Imports Microsoft.AspNet.Identity.EntityFramework Imports Microsoft.AspNet.Identity.Owin Imports System.Linq Imports System.Web Imports System.Web.UI… Imports Microsoft.Owin.Security Imports System Imports System.Data Imports System.Configuration … Re: Code for SQL INSERT INTO? Programming Web Development by Blueie ….Identity Imports Microsoft.AspNet.Identity.EntityFramework Imports Microsoft.AspNet.Identity.Owin Imports System Imports System.Linq Imports System.Web Imports System… Re: How to create a REST Service? Programming Software Development by NivekW … can either create this as a service using something like OWIN, or you could host this as a web application by… Using Owin/Identity with Existing Database Fields Requirement Programming Web Development by Stefano Mtangoo I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change. I was looking at Default Register/Login that comes with MVC5 sample and found that its table have fields that are problematic to my app. Specifically, my users don't have Emails and app does not require one.… Re: Using Owin/Identity with Existing Database Fields Requirement Programming Web Development by Stefano Mtangoo the links are great. My head is spinning at speed of light right now. I will make use of them later. For now I will mark it solved! Re: Print Preview Programming Web Development by vsmash why do you have three forms in this code? three open and only two close. Re: Tic Tac Toe with Minimax Algorithm Programming Software Development by Ancient Dragon computer won for me but I had to sort of force it to win. It appears to first check if it needs to block before it checks to see if it can win. Maybe you need to reverse those two checks. (I didn't look at the code, I just compiled and ran it) I had to add [icode]#include <string>[/icode] in each of the *.cpp files because my compiler, … Re: Tic Tac Toe with Minimax Algorithm Programming Software Development by louisdinh the computer only wins when we don't want to win. i check the game state in evaluation board method which was call in minmove and max move. i don't understand why it doesn't block the player :-s Re: A Simple Tic Tac Toe: C Programming Programming Software Development by Jason Giggs 2726 lines just for tic tac toe ?! man you gotta be kidding me. i have one in c++, less than 150. get real dude. Re: A Simple Tic Tac Toe: C Programming Programming Software Development by Adak I applaud your energy, but you don't understand what programming is all about. The rare goto is OK, but there's no need for them in TTT. C (and all programming languages to some extent), are meant to be a concise and efficient way to do something. Where accuracy is paramount, and a good interface for the user is critical, but efficiency and … Re: A Simple Tic Tac Toe: C Programming Programming Software Development by vivek.barsopia its definitely not a simple tic tac toe,but a great code Re: A Simple Tic Tac Toe: C Programming Programming Software Development by fortunebista get a life dude. programming aint for you! Re: A Simple Tic Tac Toe: C Programming Programming Software Development by rakesh.malakar.77 i was just scrolling down the page to check where the coding ends....mannn!! got to appreciate ur effort....