Click here to Skip to main content
15,917,928 members

Comments by Darith1974 (Top 4 by date)

Darith1974 4-Feb-13 16:44pm View    
I've been asked to ado an assignment where one part is implement a mvc4 with entiy; done that. Then implement a web rest which accesses a database. Unsure if i should do a wcf rest service which accesses a database or manipulate a method or action in the mvc4 s a rest client can access it.
Darith1974 31-Jan-13 16:39pm View    
Sorry i realize this has to be done via the controller, i will research this properly
Darith1974 23-Dec-12 16:05pm View    
No, i did not; but when i copied the config to the same folder as i relocated a copy of the .exe; it solved the error. I presumed generated a release version would include a application configuration. So do i need to have two files or is it possible to create one? Maybe using the publish service in visual studio?
Darith1974 21-Nov-12 5:07am View    
string a ="te";
StringBuilder r2 = new StringBuilder();
foreach (Byte b in Encoding.Unicode.GetBytes(a))
{
r2.Append(Convert.ToString(b,2));
}

Thanks your reply has substance in that i used the above code to create the initial string so i should look at this code to solve my challenge