Click here to Skip to main content
15,888,139 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMaintain focus between postbacks Pin
Ulf Andersson11-Feb-07 11:01
Ulf Andersson11-Feb-07 11:01 
QuestionASP.NET and Flash Pin
nour12311-Feb-07 6:44
nour12311-Feb-07 6:44 
QuestionCalendar1 Pin
Blue_Boy11-Feb-07 4:08
Blue_Boy11-Feb-07 4:08 
QuestionHyperLink in GridView Pin
Mohammed Elkholy11-Feb-07 1:19
Mohammed Elkholy11-Feb-07 1:19 
AnswerRe: HyperLink in GridView Pin
BORN...again!11-Feb-07 13:35
BORN...again!11-Feb-07 13:35 
GeneralRe: HyperLink in GridView Pin
Mohammed Elkholy11-Feb-07 20:31
Mohammed Elkholy11-Feb-07 20:31 
QuestionView State "32 bit encoded" Pin
DavidsMaguire11-Feb-07 0:14
DavidsMaguire11-Feb-07 0:14 
AnswerRe: View State "32 bit encoded" Pin
Colin Angus Mackay11-Feb-07 0:29
Colin Angus Mackay11-Feb-07 0:29 
View state is base 64 encoded. It means that the bits of raw viewstate are taken 6 at a time (you need 6 bits to represent 64 numbers [0-63]) and encoded into a string of characters.

When we count we use base 10: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 and then we add a column for 10 and so on.

That base does not align with with a power of 2 and so does not align with the bits in a numerical representation in a computer.

Two common bases to get around this are base 8 (octal) and base 16 (hexadecimal, or just hex). In Hex the count goes: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F and then we add a column for 10 (which is actually 16 in base 10) and so on.

Base 64 is just an extension of this with 64 symbols representing the numbers 0 to 63.


GeneralRe: View State "32 bit encoded" Pin
DavidsMaguire11-Feb-07 0:45
DavidsMaguire11-Feb-07 0:45 
GeneralRe: View State "32 bit encoded" Pin
Colin Angus Mackay11-Feb-07 3:38
Colin Angus Mackay11-Feb-07 3:38 
GeneralRe: View State "32 bit encoded" Pin
Guffa11-Feb-07 14:24
Guffa11-Feb-07 14:24 
GeneralRe: View State "32 bit encoded" Pin
DavidsMaguire11-Feb-07 22:00
DavidsMaguire11-Feb-07 22:00 
GeneralRe: View State "32 bit encoded" Pin
Colin Angus Mackay12-Feb-07 1:57
Colin Angus Mackay12-Feb-07 1:57 
Questiononmouseover Javascript event Pin
Blue_Boy11-Feb-07 0:11
Blue_Boy11-Feb-07 0:11 
AnswerRe: onmouseover Javascript event Pin
Guffa11-Feb-07 0:20
Guffa11-Feb-07 0:20 
GeneralRe: onmouseover Javascript event Pin
Blue_Boy11-Feb-07 0:24
Blue_Boy11-Feb-07 0:24 
AnswerRe: onmouseover Javascript event Pin
Guffa11-Feb-07 11:23
Guffa11-Feb-07 11:23 
QuestionWeb.Config error Pin
obarahmeh10-Feb-07 23:58
obarahmeh10-Feb-07 23:58 
AnswerRe: Web.Config error Pin
BORN...again!11-Feb-07 13:45
BORN...again!11-Feb-07 13:45 
Questionkeeping track of clicked node in tree view to get data From SQL server accordingly Pin
EEmaan10-Feb-07 23:38
EEmaan10-Feb-07 23:38 
Questionhelp in keeping track of clicked node in tree view to get data From SQL server accordingly Pin
EEmaan10-Feb-07 23:34
EEmaan10-Feb-07 23:34 
QuestionServerside Testing Pin
Brendan Vogt10-Feb-07 18:35
Brendan Vogt10-Feb-07 18:35 
Questionwebservice response giving problem [modified] Pin
keroed_edmond10-Feb-07 11:21
keroed_edmond10-Feb-07 11:21 
QuestionNew to ASP.Net Pin
Member 344923110-Feb-07 8:46
Member 344923110-Feb-07 8:46 
AnswerRe: New to ASP.Net Pin
Guffa10-Feb-07 8:51
Guffa10-Feb-07 8:51 

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.