Search

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

Matching Posts

  • Re: Using VB 6.0 Variant in ASP.NET

    Hi, The VB6 Variant data type is replaced by the Object data type in VB.NET. The Object data type is .NET’s universal data type. It can hold data of any other data type. Visual Basic.NET documentation says that all the functionality of the VB6 Variant type is supplied by the VB.NET Object data type. So, it is better to use Object data type. Personally, I had some bad experiences passing object to the variant type parameter but as far as it is getting your work done, It is ok to use it. cheers
    Posted to Getting Started (Forum) by aghausman12 on 8/7/2009
  • Re: Passing table of values to a CLR function

    Hi, If you are using SQL 2005, I am afraid passing a table value parameter is not possible even in CLR Procedure. See, CLR Procedure is .net based but with very limited resources. You cannot actually do all the things which you can in normal .net application. The reason is very obvious, because CLR Procedure executed inside the instance of SQL Server. However, if you are using SQL Server 2008 then you can use table value parameter : see. http://msdn.microsoft.com/en-us/library/bb510489.aspx http
  • Re: AlwaysVisibleControlExtender not working in IE8

    Hi, How about this one : <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" > forcing IE 8 to treat your site like IE 7. This can solve your problem cheers
  • Re: How to reference Web Service Reference from a Custom Class

    Hi, Right click on the Class Library Project and Click on the Add Service Reference Item. Then from Add Service, Click on the Advance Button. A new window will open, you will find Compatablity section at the bottom which has the button of Add Web Referecnce. Here is you go .. press that button and add your web reference in class project.
    Posted to XML Web Services (Forum) by aghausman12 on 7/30/2009
  • Re: PopupControlExtender - pre-display processing, and finding target control

    Hi, I have created the same thing, but by using AJAX with user control. You surely want to use ajax but you can skip the User Control Part. here you go : http://www.aghausman.net/dotnet/passing-parameter-to-user-control-on-a-modal-popup.html cheers
  • Re: cssfriendly menu adapters

    Hi, Check the following link : http://www.aghausman.net/asp/integrating-css-control-adapter-with-menu-control.html Notice the <link rel="stylesheet" href="/CSS/SimpleMenu.css" type="text/css" /> at the end. you only need to make changes in this CSS incase you want to change the look and feel. The css is well written and very understandable. All the tier and sections are there with comments. cheers
  • Re: Is it possible to connect Event Calendar with built-in membership/profile system?

    Hi, I guess you need to design your custom table to do that. To my knowledge, there is nothing like that built-in.How can you do that let me point out you an important table of membership API, from where we will use the PK as the FK in our newly created table. aspnet_Users contain a field UserId. Which you can use as FK in your custom tables. I guess that would help ....
    Posted to Web Forms (Forum) by aghausman12 on 7/6/2009
  • Re: HTML Editor Control

    Hi Scott, To my knowlegde about this new control, none of them can be correct using any property it seems like bugs . However, you can submit the bug in the codeplex space of ajax control tool kit http://ajaxcontroltoolkit.codeplex.com/WorkItem/List.aspx Why don't you use, other free Rich Textbox Editors as such FCKEditor FreeTextbox (freetextbox.com) cheers
  • Re: login not redirecting

    Hi, are you calling pages from localhost ? if not, then give it a try. Have you tried using different browsers ? See this post : http://www.velocityreviews.com/forums/t98190-formsauthenticationredirectfromloginpage-problem.html http://www.justskins.com/forums/redirect-not-working-84696.html cheers
    Posted to Security (Forum) by aghausman12 on 6/16/2009
  • Re: Problem running aspnet_reqsql.exe

    Hi, It seems your database services are either not working or aspnet_regsql is net getting your database instance. For verification go to control panel -> Administrative tools and then Services and verify you get SQL Server (Express) service running there. Also, if you the name appears on the services is different from SQL Server. try to give the exact name as appears here along with your pc name like "PCNAME/ServiceName" in aspnet_regsql wizard. However, If you find that ok , use management
    Posted to Security (Forum) by aghausman12 on 6/16/2009
Page 1 of 55 (550 items) 1 2 3 4 5 Next > ... Last »