Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by iaswnidou

  1. iaswnidou

    Cannot connect to local SQL Server

    Thanks a lot, I connected to the database using the Server Explorer and picked up the connection string from there.
  2. iaswnidou

    Cannot connect to local SQL Server

    Hello I am using Visual Studio 2008 and SQL Server 2005. I have a solution that includes an Office Excel 2007 Workbook project and a class library. When I run the Excel form comes up and I am trying to retrieve data from my local SQL Server on clicking a button. The code I use is [using...
  3. iaswnidou

    Logging-in Redirection to wrong form

    Thanks a lot. It works. If someday you think of a more elegant solution, like declaratively through the web.config, please post back. Have a good day.
  4. iaswnidou

    Logging-in Redirection to wrong form

    Oh sorry that's what you meant! Yes there is actually ReturnUrl=%2fEthicAdmin%2fSignUpClient.aspx how do you get rid of it?
  5. iaswnidou

    Logging-in Redirection to wrong form

    Is there a URL somewhere? I don't know how it redirects from the login to default. I thought it's something default that the membership provider does.
  6. iaswnidou

    Logging-in Redirection to wrong form

    Basically this happens to any page i redirect through the menu. After I log out it remembers the last page i visited.
  7. iaswnidou

    Logging-in Redirection to wrong form

    I thought it's something wrong with the web.config..
  8. iaswnidou

    Logging-in Redirection to wrong form

    Where exactly you mean? On logging out? this is the log out button method protected void lbLogOut_Click(object sender, EventArgs e) { Session.RemoveAll(); FormsAuthentication.SignOut(); FormsAuthentication.RedirectToLoginPage(); }
  9. iaswnidou

    Logging-in Redirection to wrong form

    Hello I'm working on a asp.net 2.0 website that uses forms authentication. In the login.aspx there is the following code that takes you to default.aspx <asp:Login ID="Login1" runat="server" RememberMeSet="false" LoginButtonType="Link" TitleText="Login to the Ethic referal page"...
  10. iaswnidou

    Design query

    Hello I am going to create a website for a client in .net and would like your advice. He's got 20 business items and wants a different web page for each. I told him what we could do is build an admin template page, with which he can update the site. Do you agree with this? If yes, shall I have...
  11. iaswnidou

    How to deploy a windows form solution

    Hello I have a solution which consists of a few class libraries, a windows form project and a web form one. I create a Setup Project for Windows Applications as described in this microsoft link. http://msdn2.microsoft.com/en-us/library/ms227381(VS.80).aspx When I finish, i double click on...
  12. iaswnidou

    Role-based Authorization

    Hello I have a very simple application that displays and edits employees. This app is divided in tiers; UI, BL and DAL. My UI consists of webforms and the next task is to implement role-based authorization of the users. However, I am looking for a solution that would also work, had my UI been...
  13. iaswnidou

    Tool that detected database schema changes

    Hello I am looking for a tool that compares 2 SQL Server 2000 databases and reports schema changes, i.e new stored procedures, deleted tables, added columns in tables etc. Has anybody come across one? Thanks
  14. iaswnidou

    Using Events between user controls

    Thank you very much for your quick response. I guess you must be right. I will try it later and let u know.
  15. iaswnidou

    Using Events between user controls

    Hello I have 2 user controls within a webform. I want to raise an event on one of them and be handled in the other one by subscribing to it. So in the first one i have these declarations public event EventHandler ImportUsers; protected void OnImportUsers(EventArgs e) { if (ImportUsers !=...

Part and Inventory Search

Back
Top