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:269415
More Search Options
RSS Available
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 »
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
ASP.NET:
T4MVC now has a real home and a dedicated forum!
TechNet Edge:
Windows Server 2008 R2 : New Power Management Features
ASP.NET:
Web Deployment Painkillers: VS 2010 & MS Deploy
WindowsClient:
Application Accessibility Testing
WindowsClient:
Prism & WCF RIA Services
Channel 9:
Sharepoint 2010 and Claims-Based Identity
WindowsClient:
IRhetoric Ported To BlogEngine.NET
WindowsClient:
PDC Recap and More
Channel 9:
Reactive Extensions API in depth: Primitives
WindowsClient:
New WPF Features: MultiTouch
WindowsClient:
codeplex.com/testapi v 0.4 available
Channel 9:
The Visual Studio Documentary - Alan Cooper, the Father of Visual Basic
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online