Search

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

Matching Posts

  • Re: Http Module

    Hi pavan, HTTP Modules: HTTP Modules use to intercept HTTP requests for modifying or utilize HTTP based requests according to needs like authentication, authorization, session/state management, logging, modifying Response, URL rewriting, Error handling, Caching.... HTTP Modules are activated/called/invoked before and after HTTP Handler execution. HTTP Modules are integral part of ASP.NET framework now and heavily being used as it cater grips upon request and let developers to generate response in
    Posted to Getting Started (Forum) by gopalanmani on 12/31/2009
  • Re: setting the form name attribute

    Hi, If you don't specify the action attribute, it will be ignored as the form is always submitted to the page itself. If method attribute is left out, by default it will be set to method="post". Other attributes like name and if are also automatically assigned by ASP.NET if you don't mention them. Important point to keep in mind here is that an .aspx page can have only one <form runat="server"> control. If you leave out name, method, action and ID attribute, the
    Posted to ASP.NET 4 Beta 2 (Forum) by gopalanmani on 12/31/2009
  • Re: pass values between dynamically loaded user controls

    hi, check the following url, http://stackoverflow.com/questions/336453/how-can-i-pass-a-data-string-to-a-programmatically-loaded-custom-user-control-in http://stackoverflow.com/questions/1716080/passing-parameters-to-a-user-control http://www.velocityreviews.com/forums/t107034-more-passing-parameters-to-dynamically-loaded-user-controls.html hope this could help you!
  • Re: Installation Guide

    Hi, check this url, http://aspalliance.com/839_Getting_Started_with_the_Club_Site_Starter_Kit hope this could help you!
    Posted to Club Web Site Starter Kit (Forum) by gopalanmani on 12/29/2009
  • Re: Adding google custom search for intranet web application

    hi, check this url, http://groups.google.com/group/google-custom-search-cse-and-your-site/browse_thread/thread/6075bb7999b850d7/70a438f544c64bbe?lnk=gst&q=
    Posted to Getting Started (Forum) by gopalanmani on 12/29/2009
  • Re: Response.redirect

    in code behind file string url = "http://www.yoururl.com" ; ClientScript.RegisterStartupScript( this .GetType(), "OpenWin" , "<script>openNewWin('" + url + "')</script>" ); Add the following script to the <head> section of your page < script language ="javascript" type ="text/javascript"> function openNewWin(url) { var x = window.open(url, 'mynewwin' , 'width=600,height=600,toolbar=1' ); x
    Posted to Getting Started (Forum) by gopalanmani on 12/29/2009
  • Re: Convert string to date

    Hi, Use CDate to convert a string to a date/time. Dim d1 As Date Dim d2 As Date Dim d3 As Date d1 = CDate("August 12, 2004") d2 = CDate("2:07:30 PM") d3 = CDate("August 12, 2004 2:07:30 PM") Print d1 ' prints 8/12/2004 Print d2 ' prints 2:07:30 PM Print d3 ' prints 8/12/2004 2:07:30 PM or Use DateTime.ParseExact DateTime.ParseExact( myDateString, "d/M/yyyy", System.Threading.Thread.CurrentThread.CurrentCulture);
    Posted to Getting Started (Forum) by gopalanmani on 12/29/2009
  • Re: XML File Read

    hi, try to like this, XmlTextReader textReader = new XmlTextReader("C:\\books.xml"); textReader.Read(); // If the node has value while (textReader.Read()) { // Move to fist element textReader.MoveToElement(); Console.WriteLine("XmlTextReader Properties Test"); Console.WriteLine("==================="); // Read this element's properties and display them on console Console.WriteLine("Name:" + textReader.Name); Console.WriteLine("Base URI:" + textReader
    Posted to Getting Started (Forum) by gopalanmani on 12/29/2009
  • Re: will indexing primary keys make table query faster?

    Hi, check this url, http://www.fmsinc.com/tpapers/faster/ hope this could help you!
  • Re: GridView SelectedIndex Error:Index out of range

    Hi, Try checking the index size of Rows before accessing the information such as: i f (index < MyGridView.Rows.Count) { //action } and check the following threads, http://forums.asp.net/t/1502326.aspx http://forums.asp.net/t/1482972.aspx
    Posted to Data Presentation Controls (Forum) by gopalanmani on 12/28/2009
Page 1 of 66 (656 items) 1 2 3 4 5 Next > ... Last »