Search

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

Matching Posts

  • Re: use methods throughout whole project. How?

    Leonvr, I would use a seperate file and create a class in that file with all the methods you to want to use throughout your site. Then in the page you want to use the methods just include the code like below: protected YourCommonClass commClass = new YourCommonClass(); commClass.YourMethod();
    Posted to Getting Started (Forum) by V-Bot on 1/17/2007
  • Re: FindControl() problem

    I made the following changes to your code and it works fine for me on .NET 1.1: private void Button1_Click( object sender, System.EventArgs e) { Panel pnlPanel; // hide all panels for ( int i = 0; i < 3; i++) { int intPostfix = i + 1; string strPageID = "Panel" + intPostfix.ToString(); pnlPanel = (Panel) this .FindControl(strPageID); if (pnlPanel != null ) { pnlPanel.Visible = false ; } } } This is the front end code: <form id="Form1" method="post" runat="server"> <asp:Panel id="Panel1
    Posted to Web Forms (Forum) by V-Bot on 1/15/2007
  • Re: Please help

    Karen, Can you please explain the problem a little better, maybe you can describe it with more details. Are you providing multiple checkboxes with different addresses and then you need to determine which checkbox was clicked?
    Posted to Web Forms (Forum) by V-Bot on 1/5/2007
  • Re: What is the best way to perform code review?

    The History Option feature also allows you to filter by To Date, From Date and Users.
    Posted to Free For All (Forum) by V-Bot on 1/5/2007
  • Re: What is the best way to perform code review?

    You can see what changes a user made to a file in SourceSafe. Select the file and (Cntl-H) to Show History. In the show history window, you can compare the last version of the file with a previous version of the file and you would be able to view the changes the last user made. Try this link and it shows you how to use the View History option in VSS: http://msdn2.microsoft.com/en-us/library/fx257thz(VS.80).aspx
    Posted to Free For All (Forum) by V-Bot on 1/5/2007
  • Re: Getting Started

    Try Web Services Enhancements (WSE) 2.0 SP2 for Microsoft .NET. Don't let the name fool you, it is not refering to .NET 2.0 but rather WSE 2.0. There is also WSE 3.0. But by using WSE, you can add security to your web services. there are many examples available on the web to help you use WSE. Hope this helps: http://www.microsoft.com/downloads/details.aspx?FamilyId=FC5F06C5-821F-41D3-A4FE-6C7B56423841&displaylang=en WS-Security Drilldown in Web Services Enhancements 2.0 Article: http://msdn.microsoft
    Posted to XML Web Services (Forum) by V-Bot on 1/5/2007
  • Re: Saving / Updating data on a webform

    Normally, when users change some data, they want to save. Can you explain why you do not want the users to Save after they have chagned the data field on the web form? Some options are to make the control read-only or disabled.
    Posted to Getting Started (Forum) by V-Bot on 1/4/2007
  • Database timestamp

    Maybe I am missing the point, but why are you not using the DATABASE timestamp. Regardless of where the users are, the time stamp when the data was saved would be based on the database time stamp, does it matter that you need to know the correct time of the users time zone. Am I missing something here?
    Posted to Getting Started (Forum) by V-Bot on 1/4/2007
  • Re: C# for beginners book

    http://www.amazon.com/Learn-Program-C-John-Smiley/dp/0072222611 This was the easiest book I have ever read for learning a new programming language. This book is great and may also be available in your local library.
    Posted to Book Reviews (Forum) by V-Bot on 1/4/2007
  • Re: Newbie question

    www.bookpool.com has a great WROX box set for ASP.NET 2.0. It comes with few asp.net books from WROX. Here is the link http://www.bookpool.com/sm/0470048409 to the box set.
    Posted to Book Reviews (Forum) by V-Bot on 1/4/2007
Page 1 of 2 (18 items) 1 2 Next >