So. Sometimes I have to fill my Tree with a lot of nodes and leaves. So I receive html with size about 1.5-2 Mb. It's too large. I looked at html-code and found out, that there is a lot of unnecessary code, related with doPostBack javascript. Can you tell me how can I use client side script to solve the problem? :-O -- Digitally yours, Bounz
Bounz
Posts
-
AutoPostBack for TreeView in ASP.Net 2 -
AutoPostBack for TreeView in ASP.Net 2Hi! I can't find autoPostBack property for TreeView control at my asp script. But I still want ASP don't generate doPostBack script for TreeView. What have I to do for this?:confused: -- Digitally yours, Bounz
-
Active windows usersHow can I get information about currently logged users (user names) in windows? -- Digitally yours, Bounz
-
s JavaScript in ASP.NET page troubleI've solved my problem. Trouble was in page encoding.. windows-1251 nedeed.. :) -- Digitally yours, Bounz
-
s JavaScript in ASP.NET page troubleI found some bug (or it's no bug) but this page cannot be displayed properly because of some symbols, which appears in html-code, returned by IIS. So, we have the first line:

As you see, before we have 3 odd symbols. Where are they from and how can I get them out of there? -- Digitally yours, Bounz -
s JavaScript in ASP.NET page troubleHm-m. Even with html and title tag i have the same error.. Now asp script looks like:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> Untitled Page !!
-- Digitally yours, Bounz -
s JavaScript in ASP.NET page troubleHi. I have index.aspx with the following content:
<%@ Page Language="C#" ContentType="text/html" %> Untitled Document Hooray
Here stm31.js and mainmenu.js are scripts, which draws menu. When i try to open this page in browser i get an error in browser and my menu is not displayed (but "Hooray" is). The source of generated page is:Untitled Document Hooray
And when I make a simple .htm with this html-code I can view my menu in browser. What I do wrong in my asp script and what i have to do to correct my mistake? -- Digitally yours, Bounz -
not case-sensitive string.Replace()Thanks a lot. I have learned a lot of new... :) -- Digitally yours, Bounz
-
not case-sensitive string.Replace()thanks a lot to all.. i found answer: i have to use
Regex rx = new Regex("(?i)WhatIWantToReplace"); string strRep = rx.Replace("TextInWhichReplace", "WithWhichReplace");
-- Digitally yours, Bounz -
System.net.Mail default smtp hostYou have to specify SMTP-server, which you will use for sending mail... I did following:
myClient = new SmtpClient(serverName, Convert.ToInt32(serverPort));
where serverName is IP-adress of SMTP-server. -- Digitally yours, Bounz -
not case-sensitive string.Replace()Give an example, please.:-O I want Replace() to find "thurman" in "Uma Thurman"... How can I implement this? -- Digitally yours, Bounz
-
not case-sensitive string.Replace()How can i perfom case-NONsensitive replacing in string? Advice, please.. -- Digitally yours, Bounz
-
Tools -> Build Comments Web PagesHow can do this in VS 2005? -- Digitally yours, Bounz
-
exec in C#thanks, I'll try -- Digitally yours, Bounz
-
exec in C#How can I execute some command from my C# programm, as though I execute it from cmd.exe? And how can I get the result of it? So, I need execute "net view \\hostname" and get its output into a string variable.. Help, please.. -- Digitally yours, Bounz