asp.net

Java Web Services video tutorials

Are there video tutorials for Java Web Services with the same caliber as asp.net and windowsclient.net Learn section? ...

How to display SVN revision on web site dynamically?

My web site is a checkouted version of SVN repo. I mean .svn folders are placed on web server. I don't use web publishing. And I want to display current project revision (whole web site) in footer. How can I do that? If I were using web publishing, I could determine revision on build/publish and write it as static html. So how to get ...

How can I invoke a function when a user leaves my site?

I'm developing a website in VB.NET/ASP.NET 2.0. I want to invoke an event (Server Side) once a user leaves my site by putting a different URL in the address bar, is it possible? If so, how? ...

How do I access the variables from urls that come from the GET method in ASP.net?

Asp.net has turned out to be alot easier to use than PHP (so far). However, I have been searching for a while and simply cannot figure this out. How do I get the variables that are contained in the url of my page (that originate from a form that had the method "GET") and utilize them? For example, my page would be www.example.com/index....

Re-publishing an ASP.NET Web Application While Site is Live

I am trying to get a grasp on how to handle updates to a live, functioning ASP.NET (2.0 or greater) Application while there are users on the site. For example, suppose SO is an ASP.NET Web Application project. The project code compiles down to the single .DLL in the BIN folder. Now, there are constantly users on SO, so what would happen...

Cost of using ASP.NET

One thing that I keep hearing in reference to ASP.NET and MSFT technologies is that they cost money to use. Often when they are being compared to open source languages someone will mention that one factor in favor of open source is that it's free (to an extent). My question is, when does ASP.NET actually cost money to use in terms of u...

Jqmodal isn't working in the Updatepanel

I have a method named raise_alarm() which, show a message box based on jquery. But when I call this method from an event of a control(such as submit button) which is inside of Updatepanel, it isn't working. Related codes are below. How can I fix it? Public Sub Raise_Alarm(ByVal p_Page As Page, ByVal p_Message As String, Optional ByVal ...

Silverlight's WebClient isn't connecting to my server

Hi, I've got a problem here. I've got an ASP.net website hosting a silverlight 2 application. I'd like the site to communicate to and fro from the silverlight app, and I'm doing this via http requests. Incidentally, if anyone knows a better way, please do tell me. My server's got the following http listener set up. I copied this from a...

How do I get data from the query string in asp?

Hello all. I am working on a project for an IT class where I need to pass in a value on the query string in a php page and read it into a hidden field on an ASP page.I currently am passing the parameter fine from the php page to ASP, but I am pretty new to .NET in general. How do I get the data out of the string and into a variable in C#...

How to access your website through LAN in ASP.NET

hello, I have an asp.net web-page application and i want it to be accessed using a local area network(LAN) or wireless area network(WLAN). I do not know where to start. Is there something that i will configure in order for others to access my web-page?? I would really appreciate your answer, thanks a lot.. (^_^)... ...

ASP.NET 3.5 and SQL Server 2008

I'm new to ASP.NET and to SQL Server. I'm from the PHP/MySQL world, so I'm pretty confused with this stuff. I need help because I'm trying to make a simple blog as a first serious exercise. I can't figure out how to connect to my sql server from my c# code. my sql server is on the same machine as IIS. When i use SQL Server Management Stu...

Getting the IP address of server in ASP.NET?

How do I get the IP address of the server that calls my ASP.NET page? I have seen stuff about a Response object, but am very new at c#. Thanks a ton. ...

CMS for a personal website - ASP.NET/C#

I plan to create a community website aimed at publishing ASP.NET articles, blogs, forums and video tutorials. I am considering DNN and MojoPortal. Some of my requirements are: An editor that lets me post code with ease Open source preferably written in C# Easy to export content if there is a need to switch CMS Some way of easily posti...

Where to find a comparison between best asp.net webhosting companies?

Want to find a good comparison between web hosting companies which support asp.net Thanks, ...

How to Deploy/Publish an ASP.NET website?

Hi folks, Is there any easy way to Deploy/Publish a website written in asp.net ? And what is the difference between deploy and publish ? ...

Asp.Net Url Handling

Is there a built in method to handle urls like Default.aspx/mycontent or do I need to handle it myself by taking the url and stripping of the file's path? I have tried searching for it but haven't been able to find anything. I'd like to handle .aspx/parameters and am not looking at Mod/URL Rewrite. ...

DotNetNuke 3.0.x on SQLServer 2005/Net 2.0.Win2003 - possible?

I've promised to take a look at an old DotNetNuke installation for a client with the intention of making a few, hopefully minor, changes. The installation is rather old - I believe version 3.0.013 - and the production copy is running against SQL Server 2000, Windows 2003 and .Net 1.1. As the production server is live and significantly u...

How do I interrupt an ASP.NET button postback with BlockUI and Jquery

I have an ASP.NET page with a number of ASP:Button instances on it. For some, I need to show a confirmation prompt and, should the user choose yes, the original postback method is called. Otherwise, the overall process is cancelled. I've got an example running but I get inconsistent results, mainly in FF3 where I get an exception thrown...

Does C# inline properties?

Does C# inline access to properties? I'm aware of the 32 byte(instruction?) limit on the JIT for inlining, but will it inline properties or just pure method calls? ...

What's the best way for the server to send messages to a web client?

Links to articles would also be appreciated--I don't know the terminology to search for. I'm looking to learn how a web application can allow for server-to-client communications. I know the web was not designed for this and that it has been something of a hurdle, and am just wondering what the state of this is, and what the best practic...