Is there a way to return the whole HTML document from the Client to
the Server "as is" so I can use ASP.NET to parse through it and look
for stuff?
I want to see what some client side JavaScript may have done to the
XHTML document."GMartin" <glenn.e.martin@.gmail.com> wrote in message
news:d9443226-88cf-4bb0-b1d6-4f9514c0ab02@.j20g2000hsi.googlegroups.com...
> Is there a way to return the whole HTML document from the Client to
> the Server "as is" so I can use ASP.NET to parse through it and look
> for stuff?
> I want to see what some client side JavaScript may have done to the
> XHTML document.
This doesn't directly answer your question, but it may be what you are
looking for.
http://projects.nikhilk.net/Projects/WebDevHelper.aspx
In addition to its many other features, it will show you the "live" HTML
source for a page (as modified by any javascript).
I'm looking to do it at runtime. Not with a utility while
programming.
On Feb 11, 1:31 pm, "Scott Roberts" <srobe...@.no.spam.here-webworks-
software.com> wrote:
> "GMartin" <glenn.e.mar...@.gmail.com> wrote in message
> news:d9443226-88cf-4bb0-b1d6-4f9514c0ab02@.j20g2000hsi.googlegroups.com...
>
>
> This doesn't directly answer your question, but it may be what you are
> looking for.
> http://projects.nikhilk.net/Projects/WebDevHelper.aspx
> In addition to its many other features, it will show you the "live" HTML
> source for a page (as modified by any javascript).
Showing posts with label parse. Show all posts
Showing posts with label parse. Show all posts
Saturday, March 31, 2012
Wednesday, March 28, 2012
substring
I have a string
bobby@dotnet.itags.org.yahoo.com (Bobby Gill)
string strRaw = "bobby@.yahoo.com (Bobby Gill)";
strEmailAddress = strRaw.Split(' ')[0];
bobby@dotnet.itags.org.yahoo.com (Bobby Gill)
I want to parse it and want to get the substring "bobby@dotnet.itags.org.yahoo.com" before
space.
Could you please give me code.
thanks"bobby" <bobby@.discussions.microsoft.comwrote in message
news:23977997-B516-48B3-BC3C-BD5296C6B736@.microsoft.com...
Quote:
Originally Posted by
>I have a string
bobby@.yahoo.com (Bobby Gill)
>
I want to parse it and want to get the substring "bobby@.yahoo.com" before
space.
Could you please give me code.
string strRaw = "bobby@.yahoo.com (Bobby Gill)";
strEmailAddress = strRaw.Split(' ')[0];
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Labels:
asp,
beforespace,
bobby,
bobbyyahoo,
gill,
net,
parse,
stringbobbyyahoo,
substring
Subscribe to:
Comments (Atom)