|
|
Browse by Tags
All Tags » ASP.NET (RSS)
Showing page 4 of 7 (70 total posts)
-
Asked originally on newsgroups, snippets of the question
"A page have a ListBox and I want that on the OnSelectedIndexChanged event a second page be called passing the value of the selected option. I want the second page to show its own url.
...
The problem is that the ListBox control does not have a PostBackUrl event like the ...
-
As per the subject, here's a simple sample
global.asax
<%@ Application Language="C#" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
HttpRuntime.Cache.Insert("myCacheKey", ...
-
It's funny when you get reply to things you don't remember you've asked for. :-)
I had given feedback somewhere Oct 2006 in Microsoft Connect about System.Collections.Generic not being imported by default in ASP.NET 2.0. E.g you had to manually add the import. Small thing but annoyed when one had to do it repeatedly.
Now MS had ...
-
It's been a long time, but I've steadily progressed in reading this book and finally I got it done. It's been also a long time since I've really tried to review a book, so we'll see how this goes on. :-) About the book
Professional ASP.NET 2.0 Ajax
Authors: Matt Gibbs, Dan Wahlin
Publisher: Wrox (Wiley)
ISBN: ...
-
Microsoft is taking one more step to the open community / world. Scott Guthrie is announcing in his blog that Microsoft is going to release the source code of .NET Framework with 3.5 and VS2008 release.
Many people know that you've already been able to see the code with external tools such as Reflector however this MS's ...
-
My MVP award was renewed. Honest thanks to MS.
"Dear Teemu Keiski,
Congratulations! We are pleased to present you with the 2008 Microsoft® MVP Award! The MVP Award is our way of saying thank you for promoting the spirit of community and enhancing people’s lives and the industry’s success every day. Your extraordinary ...
-
Matt Gibbs blogs about update to ASP.NET Ajax to fix issues with iPhone Safari which has been updated to 1.01. After this update, async postbacks have stopped working. Matt provides step-by-step guide to bring it back to life.
See: http://blogs.msdn.com/mattgi/archive/2007/09/11/update-for-the-iphone-update.aspx
Share this post: email it! | ...
-
This error occurs quite often, because you have more than one web.config file in your application. You might have other web.config at the root or application level (they can be the same in case your site is directly the application) and other on the subfolder or virtual directory beneath the root / application levelRoot ...
-
Often I see questions like this asked by developers who are new to ASP.NET.
I have a DIV element which should fire event XYZ on server when clicked. My code is:
<div id="myDiv" onclick="ZYZ('something')">...</div>
<script runat="server">
public void XYZ(string arg) ...
-
Link: http://mvolo.com/blogs/serverside/archive/2007/08/15/Developing-IIS7-web-server-features-with-the-.NET-framework.aspx
This article, the first in the IIS7 .NET Developer series, focuses on getting started with developing IIS7 web server features based on the .NET Framework. This article will ...
... 4 ...
|
|
|