Click here to Skip to main content
15,901,284 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: VS 2005 script debugger and IE7 any way to get this to work? Pin
minhpc_bk30-Oct-06 19:16
minhpc_bk30-Oct-06 19:16 
AnswerRe: VS 2005 script debugger and IE7 any way to get this to work? Pin
RichardGrimmer31-Oct-06 1:34
RichardGrimmer31-Oct-06 1:34 
QuestionReturn XML in function Pin
shapper30-Oct-06 5:00
shapper30-Oct-06 5:00 
AnswerRe: Return XML in function Pin
ednrgc30-Oct-06 7:25
ednrgc30-Oct-06 7:25 
GeneralRe: Return XML in function Pin
shapper30-Oct-06 10:59
shapper30-Oct-06 10:59 
GeneralRe: Return XML in function Pin
ednrgc31-Oct-06 2:57
ednrgc31-Oct-06 2:57 
QuestionMemory used by Session var Pin
Britney S. Morales30-Oct-06 4:49
Britney S. Morales30-Oct-06 4:49 
AnswerRe: Memory used by Session var Pin
ednrgc30-Oct-06 5:35
ednrgc30-Oct-06 5:35 
You can try a test web page to test it. Try something like this:

private ProcessInfo po;

public int GetIteration
{
set{ ViewState["Iteration"] = value; }
get
{
if(ViewState["Iteration"] != null )
{
return (int)ViewState["Iteration"];
}
return 0;
}
}

private void Page_Load(object sender, System.EventArgs e)
{
po = ProcessModelInfo.GetCurrentProcessInfo();
if( !Page.IsPostBack)
{
lblOriginal.Text = po.PeakMemoryUsed.ToString();
}
}

private void Button1_Click(object sender, System.EventArgs e)
{
// Add to session
for( int i=0;i<100000;i++)
{
Session["Test" + GetIteration.ToString()] = "1234567890";
GetIteration = GetIteration + 1;
}
lblCurrent.Text = po.PeakMemoryUsed.ToString();
}
QuestionPlease give me Detail Description about this Pin
chat_sp2001@yahoo.com30-Oct-06 4:23
chat_sp2001@yahoo.com30-Oct-06 4:23 
AnswerRe: Please give me Detail Description about this Pin
ednrgc30-Oct-06 7:24
ednrgc30-Oct-06 7:24 
QuestionDynamic buttons Pin
greekius30-Oct-06 4:09
greekius30-Oct-06 4:09 
AnswerRe: Dynamic buttons Pin
ToddHileHoffer30-Oct-06 5:33
ToddHileHoffer30-Oct-06 5:33 
Questionweb service related query Pin
biaali30-Oct-06 3:13
biaali30-Oct-06 3:13 
AnswerRe: web service related query Pin
saqib8230-Oct-06 18:18
saqib8230-Oct-06 18:18 
AnswerRe: web service related query Pin
saqib8230-Oct-06 18:18
saqib8230-Oct-06 18:18 
Questionwhy the window.frames.length is 0 in a page which contains frames? Pin
CooperWu30-Oct-06 2:35
CooperWu30-Oct-06 2:35 
AnswerRe: why the window.frames.length is 0 in a page which contains frames? Pin
Guffa30-Oct-06 5:53
Guffa30-Oct-06 5:53 
GeneralRe: why the window.frames.length is 0 in a page which contains frames? Pin
CooperWu30-Oct-06 15:24
CooperWu30-Oct-06 15:24 
QuestionBubbleEvent , have noone have this problem:S ? Pin
greekius30-Oct-06 2:32
greekius30-Oct-06 2:32 
AnswerRe: BubbleEvent , have noone have this problem:S ? Pin
Not Active30-Oct-06 3:00
mentorNot Active30-Oct-06 3:00 
GeneralRe: BubbleEvent , have noone have this problem:S ? Pin
greekius30-Oct-06 4:08
greekius30-Oct-06 4:08 
GeneralRe: BubbleEvent , have noone have this problem:S ? Pin
Not Active30-Oct-06 5:46
mentorNot Active30-Oct-06 5:46 
QuestionType XXX is not defined Pin
greekius30-Oct-06 2:28
greekius30-Oct-06 2:28 
AnswerRe: Type XXX is not defined Pin
ednrgc30-Oct-06 3:00
ednrgc30-Oct-06 3:00 
Questionsave image from excel file to database Pin
hemant.kaushal30-Oct-06 2:16
hemant.kaushal30-Oct-06 2:16 

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.