Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:845588
More Search Options
RSS Available
Matching Posts
Re: Panel size
This one's in JavaScript. Since you're calling the map from a JavaScript, it is possible to resize the map to the one you want it to be. The code below: map = new GMap2(document.getElementById("map_canvas")); States that the map will be rendered by a an element with an id of "map_canvas".
Posted to
Web Forms
(Forum)
by
wildquaker
on 6/28/2009
Re: how to get Page details from URL link...?
You'll have to use regular expressions to match the title tag from the response returned by the URL. The code for that is found here: http://blogs.msdn.com/noahc/archive/2007/02/19/get-a-web-page-s-title-from-a-url-c.aspx
Posted to
Web Forms
(Forum)
by
wildquaker
on 6/28/2009
Re: Disabling a hyperlink control
There are a lot of ways of doing this. But I guess doing it in the client side will be the best. It's done by what chintanpshah's posted.
Posted to
Web Forms
(Forum)
by
wildquaker
on 6/28/2009
Re: css for a href, how to change background of current page ?
If I'm right I think you can't do that with CSS alone. I think you should assign each of these links with an id. Then make an onload changing of background of the links like so in JavaScript: window.onload = function() { if(location.href.toLower() == "page1.aspx") document.getElementById("link1").style.background = "images/lnkbg1.jpg"; else if(location.href.toLower() == "page2.aspx") document.getElementById("link2").style.background = "images
Posted to
Client Side Web Development
(Forum)
by
wildquaker
on 6/28/2009
Re: object does't support this property or method
What're the styles in wickEnabled ?
Posted to
Client Side Web Development
(Forum)
by
wildquaker
on 6/25/2009
Re: Can we use wordpress with asp.net.
I don't think so. Wordpress is written in PHP. You have to then rewrite it toa .NET code. And most likely, you'll have to follow the pattern to which Wordpress is written in.
Posted to
MySQL
(Forum)
by
wildquaker
on 6/25/2009
Re: Snippet to obtain Active Directory Path
In a using code block eh? Is an object with a DirectoryEntry type disposable?
Posted to
Tips & Tricks
(Forum)
by
wildquaker
on 6/25/2009
Re: Generate HTML from aspx page
Try using HttpWebRequest and specify that same URL you have there. Ex: HttpWebRequest request = WebRequest.Create(urlString) as HttpWebRequest; HttpWebResponse response = request.GetResponse() as HttpWebResponse; Stream stream = response.GetResponseStream(); StreamReader reader = new StreamReader(stream); string htmlText = reader.ReadToEnd(); I know it's a longer implementation. But this would pretty much get the source of the rendered page.
Posted to
Web Forms
(Forum)
by
wildquaker
on 6/25/2009
Multiple Models in a View
Hey guys, I have this site where I display records (2 of it to be exact) from two different tables. How can I display these records in a view with more than one model to declare?
Posted to
ASP.NET MVC
(Forum)
by
wildquaker
on 6/25/2009
Re: Date Formatting
Darell's correct. Since you're retrieving it as a DateTime object, you'll have to put it in the format string in it's ToString() method. Ex: DateTime date = DateTime.Parse("06/29/09"); Console.WriteLine(date.ToString("dd-MMM-yy"));
Posted to
Getting Started
(Forum)
by
wildquaker
on 6/25/2009
Page 1 of 1 (10 items)
TechNet Edge:
TechNet Radio: Expert presents: Creating and Executing a Comprehensive 2007 Office Deployment
ASP.NET:
ViewModel Pattern for Silverlight - Options for Hooking a View to its Model
Channel 9:
Rx API in depth: Concat, Catch and OnErrorResumeNext
Channel 10:
PowerPoint Twitter Tools Updated
Channel 10:
Windows Live Messenger Arrives on Nokia Phones
TechNet Edge:
Visio: Drawing on Experience with Saveen Reddy
TechNet Edge:
Visio: Drawing on Experience with Saveen Reddy
IIS.NET:
URL Rewriter and Reverse Proxy
TechNet Edge:
Forefront Secure Endpoint Demo and Interview
ASP.NET:
Resizing images from the server using WPF/WIC instead of GDI+
Silverlight:
Deploying your Silverlight and WCF RIA Services application
Channel 9:
Juan Chen and Nikhil Swamy: FINE, a Compiler for End-to-End Security Verification
IIS.NET:
DebugFinder
Channel 10:
Get the Outlook Hotmail Connector Beta
Channel 10:
MSN to Launch New Lifestyle Site from Wonderwall Creator
Channel 10:
Behind the Windows 7 Startup Animation
Channel 9:
Reactive Extensions API in depth: CombineLatest
Channel 9:
C9 Lectures: Dr. Graham Hutton - Functional Programming Fundamentals Chapter 11 of 13
WindowsClient:
New WPF Showcase: Scrum Sprint Monitor
WindowsClient:
WPF/XAML helping VS2010 Extensibility
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online