Search

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

Matching Posts

  • Re: Hide/Avoid/Disable default properties of user control

    Can you illustrate more on avoid/hide some default properties? Like what? Regards
    Posted to Web Forms (Forum) by haidar_bilal on 10/22/2008
  • Re: Problem with using custom web server control in C# file

    It is more complicated than you think. What you need to do is: 1. Define an interface in the App_Code something like "IMyUserControl", let the interface contain the two methods or properties GetName()/Name and GetAge()/Age public interface IMyUserControl { string Name { get ; } string Age { get ; } } 2. Let your usercontrol implement that interface and hence provide implementation for those properties: public partial class AutoFilledInputBox : System.Web.UI.UserControl, IMyUserControl
    Posted to Web Forms (Forum) by haidar_bilal on 10/22/2008
  • Re: Having problems setting up IIS on Vista Business

    How did you setup the application inside IIS 7.0? Did you use the DefaultAppPool? Or the Classic one? Check more inside the Event View to see if ASP. NET logged any valuable information to detect what is going on. Thanks
    Posted to Installation and Setup (Forum) by haidar_bilal on 10/22/2008
  • Re: how to establish a blog

    If you are planning to host your own blog on your own domain space, then go for www.communityserver.org Else, you can look at www.dotnetsclackers.com to have your own blog. Regards
    Posted to Getting Started (Forum) by haidar_bilal on 10/17/2008
  • Re: Very fundamental question about events

    You can place event handler in a separate class. Here is an example: using System; using System.Data; using System.Configuration; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public class ButtonHandlers { public ButtonHandlers() { } public void BtnSend_Click( object sender, EventArgs e) { HttpContext.Current.Response.Write( "BtnSubmit
    Posted to Getting Started (Forum) by haidar_bilal on 10/17/2008
  • Re: implementing webmail in asp.net

    Have a look at SharpWebMail . Regards
    Posted to Getting Started (Forum) by haidar_bilal on 10/17/2008
  • Re: Pretty Simple

    You have the SelectedIndexChanged event on the DropDownList. You need to handle this event, get the item selected, and then access the DB retrieving only the data related to the item selected in the DropDownList. Regards
    Posted to Getting Started (Forum) by haidar_bilal on 10/17/2008
  • Re: About free study Project in Asp.Net

    You can have a look at the ASP.NET Starter Kits here: http://www.asp.net/community/projects/ Regards
    Posted to Getting Started (Forum) by haidar_bilal on 10/8/2008
  • Re: rookie question

    Once you finished developing/testing a website, you need to buy a hosting space + domain name. You upload your website to the hosting space using FTP client. Check out: www.serverintellect.com www.webhost4life.com Both recommended! Regards
    Posted to Getting Started (Forum) by haidar_bilal on 10/7/2008
  • Re: Running .exe from asp.net

    You need to create a new instance of the Process class. Have a look at the following: // Create a new ProcessInfo that specifies that we need // to run the CMD ProcessStartInfo startInfo = new ProcessStartInfo( "cmd.exe" ); startInfo.WindowStyle = ProcessWindowStyle.Minimized; // Do this to be able to pass parameters to the CMD startInfo.RedirectStandardInput = true ; startInfo.RedirectStandardOutput = true ; startInfo.UseShellExecute = false ; // Makes it easier on you to specify paths
    Posted to Getting Started (Forum) by haidar_bilal on 10/7/2008
Page 1 of 821 (8203 items) 1 2 3 4 5 Next > ... Last »