Search

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

Matching Posts

  • Re: 301 Redirect

    Thanks both for your feedback. The 301 redirect works correctly using the code below in the Application_BeginRequest. But what I am unable to do is dynamically change the metatag 'verifyv1' when I access the site using olddomain. Google requires both old & new domains to be verified to confirm that you are the owner. When I uncomment & use this line the application goes into a loop?? //Response.Headers.Set("verifyv1", "d6VLTnhcLArSE3Rdth7Q5S8pJp4H7kYui+yuusRspj2== "
    Posted to Configuration and Deployment (Forum) by rajanam on 6/27/2009
  • Re: 301 Redirect

    Thanks both for your suggestions. The 301 redirect works correctly using the code below in the Application_BeginRequest. But what I am unable to do is dynamically change the metatag 'verifyv1' when I access the site using olddomain. Google requires both old & new domains to be verified to confirm that you are the owner. When I uncomment & use this line the application goes into a loop?? //Response.Headers.Set("verifyv1", "d6VLTnhcLArSE3Rdth7Q5S8pJp4H7kYui+yuusRspj2
    Posted to Configuration and Deployment (Forum) by rajanam on 6/27/2009
  • 301 Redirect

    Hi Friends, I recently moved to a new primary domain but have kept the old domain pointing to the same IP Address/web site and am doing a 301 redirect from it. I still need some clarifications and would appreciate your feedback. 1. Which event is the most appropriate place to put your 301 direct script. I would assume it is session_start, but in examples on various sites it appears to be in application_beginrequest. 2. For a succesful "change of address" Google requires that we also verify
    Posted to Configuration and Deployment (Forum) by rajanam on 6/26/2009
  • Stored Procedure produces different results depending on where the app is running on (localhost/web server)

    I have this stored procedure where the update command works when I run the application from localhost, but when I run the same app from the web server the update command sets the value of the emailbody column to null. Any suggestions on what could cause the stored procedure results to be affected depending on where i am running the web application? I am using .net 2.0 framework, SQL Server 2005. Thank you, Rajan ALTER PROCEDURE [dbo].[sp_ABC] ( @seq_num int, @payment_information varchar(500) OUTPUT
  • Invalid Viewstate on localhost

    Hi Friends, I am using a web service (over which I have very little control) in my application, and this is causing an ‘Invalid viewstate’ error only on my localhost. The problem does not occur on the production server, and it also works fine on co-workers’ workstations. Its only my PC’s localhost where I get ‘Invalid viewstate’. I have attempted the following to fix the problem: 1. in web.config < pages enableViewState = " true " enableViewStateMac = " true " /> Using Machine
    Posted to State Management (Forum) by rajanam on 10/2/2008
  • Re: Menu web control expands like a list box when changing visible attribute from false to true

    The issue might be because I am dynamically changing the css in the page_load event (simply changing text size from small text to large text depending on user selection/cookie value). I will revisit it later. In the meanwhile, I was able to resolve the problem by replacing panelHeader.Visible = true; with panelHeader.Attributes.Add( "style" , "display:block;height:100%" ); and panelHeader.Visible = false; with panelHeader.Attributes.Add( "style" , "display:none;height
  • Re: Menu web control expands like a list box when changing visible attribute from false to true

    Hello Amanda, The menu control's default visible attribute is false. When I make it visible e.g. I have entered Member ID in a textbox and have validated and retrieved the member's record, at that point I want to make the control visible, and when I do that it expands in height and displays like a list box displaying all the menu items. Thank you for your interest. Rajan
  • Menu web control expands like a list box when changing visible attribute from false to true

    Hi Friends, I have this menu control in the master page which expands and displays like a listbox when I change its attribute from false to true for the web pages where its neccessary to display the control. I tried to resolve it by putting it within a panel control and changing the panel's attribute from false to true but still the menu control expands in height to list all menu items. If the menu is kept visible then it displays correctly Any suggestions regarding resolution? Thanks. <asp
  • valign not working

    Hello Friends, How can I bring the text 'Notes:' to align with the top of the textbox? It currently aligns with the bottom of the textbox. < td align ="left" valign=top width ="59%"> Notes: < asp : TextBox TextMode ="multiLine" Rows ="5" Wrap ="true" MaxLength ="255" ID ="txtNotes" Text =' <%# Bind("notes") %> ' runat ="server" Width ="74%" BackColor ="gainsboro">
    Posted to Getting Started (Forum) by rajanam on 7/28/2008
  • Re: Regular Expression Validator | No special characters

    Hi Sanjay, Did you mean validate every for every special character in code behind script? I think instead the correct Regular Expression validator values would be able to take care of it. Thanks though for your suggestion.
    Posted to Web Forms (Forum) by rajanam on 6/27/2008
Page 1 of 7 (66 items) 1 2 3 4 5 Next > ... Last »