Click here to Skip to main content
15,887,746 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: i want my one web page to be run on my one client 's pc only Pin
Albarhami30-Aug-12 0:50
Albarhami30-Aug-12 0:50 
GeneralRe: i want my one web page to be run on my one client 's pc only Pin
Eddy Vluggen30-Aug-12 1:03
professionalEddy Vluggen30-Aug-12 1:03 
AnswerCross post Pin
Wes Aday30-Aug-12 1:29
professionalWes Aday30-Aug-12 1:29 
GeneralRe: i want my one web page to be run on my one client 's pc only Pin
jkirkerx30-Aug-12 7:01
professionaljkirkerx30-Aug-12 7:01 
Questionhow can i perform a time taking process in a page by considering the performance Pin
PP from bangalore29-Aug-12 9:37
PP from bangalore29-Aug-12 9:37 
AnswerRe: how can i perform a time taking process in a page by considering the performance Pin
jkirkerx29-Aug-12 10:03
professionaljkirkerx29-Aug-12 10:03 
GeneralRe: how can i perform a time taking process in a page by considering the performance Pin
PP from bangalore31-Aug-12 10:07
PP from bangalore31-Aug-12 10:07 
GeneralRe: how can i perform a time taking process in a page by considering the performance Pin
jkirkerx31-Aug-12 10:51
professionaljkirkerx31-Aug-12 10:51 
I went the other way around, wrote vb windows programs in the 90's, then took up c++ last year to write windows programs.

I think you can run multiple threads in asp.net on the back end, but that's not going to help you.

In essence,

Each web page is an independent program, that has no knowledge of other web pages, so data has to be reloaded every time, with only a querystring or session value as a key to the data.

One single page can run like a windows program, using small calls to the server called ajax, to a web service that will return the data.

All the code, HTML is held in the heap, refereed to as the DOM, by the browser and can be manipulated using javascript, in which you can change elements or html on the fly on the client side.

Sorry I made fun of you, thought you were a newbie.

I would write a c++ program, that you load via asp.net, and have it do the work and write a file to app_data, and check for the existence of that file, and use asp.net to read the bytes, parse, load and present the results. it's just like c++, not much difference.
AnswerRe: how can i perform a time taking process in a page by considering the performance Pin
David Mujica29-Aug-12 10:38
David Mujica29-Aug-12 10:38 
GeneralRe: how can i perform a time taking process in a page by considering the performance Pin
jkirkerx29-Aug-12 11:21
professionaljkirkerx29-Aug-12 11:21 
QuestionHosting GWT .js in an MVC app? [solved] Pin
Ravi Bhavnani29-Aug-12 4:34
professionalRavi Bhavnani29-Aug-12 4:34 
Questiongridvie Pin
Abubakar Shaikh .29-Aug-12 3:55
Abubakar Shaikh .29-Aug-12 3:55 
AnswerRe: gridvie Pin
Sandeep Mewara29-Aug-12 5:46
mveSandeep Mewara29-Aug-12 5:46 
AnswerRe: gridvie Pin
archifux6-Sep-12 12:34
archifux6-Sep-12 12:34 
AnswerRe: gridvie Pin
archifux6-Sep-12 12:35
archifux6-Sep-12 12:35 
Questiongridvie Pin
Abubakar Shaikh .29-Aug-12 3:53
Abubakar Shaikh .29-Aug-12 3:53 
AnswerRe: gridvie Pin
Richard MacCutchan29-Aug-12 4:19
mveRichard MacCutchan29-Aug-12 4:19 
AnswerRe: gridvie Pin
R. Giskard Reventlov29-Aug-12 5:52
R. Giskard Reventlov29-Aug-12 5:52 
Generalget pc name and ip address of client Pin
Devang Vaja29-Aug-12 3:52
Devang Vaja29-Aug-12 3:52 
GeneralRe: get pc name and ip address of client Pin
Wes Aday29-Aug-12 4:17
professionalWes Aday29-Aug-12 4:17 
QuestionUrgent -----------.RDLC to .Rld Conversion Pin
ashwani Kumar Una29-Aug-12 3:18
ashwani Kumar Una29-Aug-12 3:18 
AnswerRe: Urgent -----------.RDLC to .Rld Conversion Pin
Pete O'Hanlon29-Aug-12 3:40
mvePete O'Hanlon29-Aug-12 3:40 
GeneralRe: Urgent -----------.RDLC to .Rld Conversion Pin
ashwani Kumar Una29-Aug-12 3:58
ashwani Kumar Una29-Aug-12 3:58 
GeneralRe: Urgent -----------.RDLC to .Rld Conversion Pin
Pete O'Hanlon29-Aug-12 4:00
mvePete O'Hanlon29-Aug-12 4:00 
QuestionEntity Framework 1.0 for Insert and Update non primary key tables Pin
indian14328-Aug-12 13:26
indian14328-Aug-12 13:26 

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.