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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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 !=...
  16. iaswnidou

    Working with Microsoft Word

    Thanks for the reply. I also found about the Visual Studio Tools for Office suite online and i'm trying to install it. I cannot seem to do this and i posted a new thread...:(
  17. iaswnidou

    Installing VSTO

    Hello I got Visual Studio 2005 installed, Professional edition, and i'm trying to install Visual Studio Tools for Office. I got Office 2003 installed. So i downloaded and ran the following from here...
  18. iaswnidou

    Working with Microsoft Word

    Hello I recently had to work with Microsoft word templates, changing VBA code. I'm no good in VBA nor I find it enjoyable, so it was a horrible experience! Is there any other way I can do with .NET 2.0? Are there any APIs/platforms that will allow me to do Microsoft word development in a...
  19. iaswnidou

    Checking connections under Management -&gt; Process Info

    Hello I have an ASP.NET application that will soon go live in our environment. When I open the SQL Server Enterprise Manager, under Management -> Current Activity -> Process Info I see 2-6 connections with the UserID that is used in my applications web.config file. At the moment I see 3...
  20. iaswnidou

    Export datagrid to Excel

    Hello I have a datagrid and one of its Templatecolumns contains a dropdownlist in its ItemTemplate. When i try to export this in excel, the values of this column do not appear, i only see the headertext. Have you come across this problem before? Here is the code i use in a button click...

Part and Inventory Search

Back
Top