Search

You searched for the word(s): userid:15

Matching Posts

  • Re: .net 2.0 not stable for hosters ???

    Hello, please let your hoster know that the final version of ASP.NET 2.0 was released on 11/7/2005 and is stable for web hosters (here are a few examples of hosters hosting ASP.NET 2.0 today: www.asp.net/hosters/v2 ). If they have any questions the following document provides guidance on how to set up ASP.NET 2.0 in shared hosting environments: http://www.microsoft.com/downloads/details.aspx?FamilyID=9e33ea25-666c-47fa-ac52-8d04785c4bd2&displaylang=en Thanks Shawn
    Posted to Web Hosting with IIS and ASP.NET (Forum) by SNandi on 11/29/2005
  • Try out the ASP.NET Issue Tracker

    The ASP.NET Issue Tracker Starter Kit is a web-based issue management application which enables project teams to keep track of outstanding issues, assig owners, track history and related issues. Key features: Create Projects --Define project name and description --Create issue categories and custom fields --Add project members and permissions Create and Track Issues --Assign issue owners and add notes --Track issue status, related issues and history --Query and sort issues using a boolean search
    Posted to Issue Tracker Starter Kit (Forum) by snandi on 3/23/2004
  • Re: crypt() and uniqid() functions were not converted

    Hello Have look at the functions in the .NET Framework's System.Crpytography namespace. The following page provides a good overview of cryptography in .NET: http://www.gotdotnet.com/team/clr/cryptofaq.htm Shawn
  • Announcing the PHP to ASP.NET Migration Assistant Alpha

    The PHP to ASP.NET Migration Assistant Alpha is designed to help you convert PHP pages and applications to ASP.NET. It does not make the conversion process completely automatic, but it will speed up your project by automating some of the steps required for migration. This is a very early release (Alpha) of the PHP to ASP.NET Migration Assistant and we need your feedback to make it a great tool. Please use the PHP to ASP.NET Migration Assistant forum to report any bugs or suggestions. Once it’s finished
    Posted to Migrating from PHP to ASP.NET (Forum) by snandi on 10/30/2003
  • Announcing the PHP to ASP.NET Migration Assistant Alpha

    The PHP to ASP.NET Migration Assistant Alpha is designed to help you convert PHP pages and applications to ASP.NET. It does not make the conversion process completely automatic, but it will speed up your project by automating some of the steps required for migration. This is a very early release (Alpha) of the PHP to ASP.NET Migration Assistant and we need your feedback to make it a great tool. Please use this PHP to ASP.NET Migration Assistant forum to report any bugs or suggestions. Once it’s finished
  • Re: Real simple question!!

    In that case you could probably use the render tags ( <% ... %> ) as below (the render tags instruct ASP.NET to execute the content that lies between them as page code). (note: you'll need to declare the variables 'YourSrcVariable' and 'YourFilenameVariable' as string variables in the page class) ... <embed width="320" height="290" src="<%=YourSrcVariable + ".mpg" %>" filename="<%=YourFilenameVariable + ".mpg" %>" autostart
    Posted to Getting Started (Forum) by snandi on 10/17/2003
  • Re: Real simple question!!

    You could also use the <asp:image> control (this would allow you to do things like dynamically resize the image from code by changing the <asp:image> control's properties). <%@ Import Namespace="Business.Images"%> <script language="c#" runat="server"> public void Page_Load(object sender, EventArgs e) { int imageID = int.Parse(Request.QueryString["m"]); Business.Images images = new Business.Images(imageID); string imgSrc = images.ImageSource;
    Posted to Getting Started (Forum) by snandi on 10/16/2003
  • Re: How To Validate Credit Card #

    This might help: http://www.codeproject.com/aspnet/creditcardvalidator.asp?target=credit%7Ccard%7Cvalidator Shawn
    Posted to Feedback on this website (Forum) by snandi on 10/15/2003
  • Re: Asp and ASP.NET

    There is also some helpful information about moving from ASP to ASP.NET on this page: http://msdn.microsoft.com/asp.net/using
    Posted to Web Matrix General Discussions (Forum) by snandi on 10/14/2003
  • Re: ASP Code will not execute

    The instructions for installing ASP.NET are probably provided in your book, if you can't find them however, you can download and install ASP.NET by following the instructions here . Additionally, please make sure that the first line in your code is: <%@ Page Language="VB" %>
    Posted to Getting Started (Forum) by snandi on 10/6/2003
Page 1 of 2 (19 items) 1 2 Next >