Search

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

Matching Posts

  • Re: Cannot clear ASP.Net_SessionID cookie.

    Refer this article of my blog: http://technicalsol.blogspot.com/2008/07/understanding-sessionabandon.html
    Posted to State Management (Forum) by sumitd on 7/29/2009
  • Re: MaxLength of Multi-Row TextBox

    MaxLength won't work in case of Multiline textbox. Refer below artilce for work around: http://www.codegod.de/webappcodegod/ASP-NET-TextBox-MaxLength-in-Multiline-Mode-AID297.aspx
    Posted to Web Forms (Forum) by sumitd on 7/29/2009
  • Re: Dynamically creating ASP Buttons with CommandEventsHandlers

    Try this: protected void Page_Init(object sender, EventArgs e) { form1.Controls.Add(GetButton("Button1", "Click")); form1.Controls.Add(GetButton("Button2", "Click again")); } private Button GetButton(string id, string name) { Button b = new Button(); b.Text = name; b.ID = id; b.Click += new EventHandler(Button_Click); b.OnClientClick = "ButtonClick('" + b.ClientID + "')"; return b; } protected void Button_Click(object sender, EventArgs
    Posted to Web Forms (Forum) by sumitd on 7/29/2009
  • Re: The specified string is not in the form required for an e-mail address.

    Refer below articles: http://www.dotnetspider.com/resources/28876-Sending-Email-multiple-users-using-VB-net.aspx http://www.c-sharpcorner.com/UploadFile/dchoksi/SendingMail02132007002923AM/SendingMail.aspx http://forums.asp.net/t/1403529.aspx http://forums.asp.net/t/1403529.aspx
    Posted to Web Forms (Forum) by sumitd on 7/28/2009
  • Re: Error with host for rewriting Url

    You need add CSS file like this < link rel = "Stylesheet" type = "text/css" href = "PATH TO CSS" /> and i believe you are doing it correctly as it is workign in the first URL. Ideally it should work in second URL also, the only reason of not working is href attribute in the link. Check href attribute of the Link. If you have any folder like Common/css where you have placed CSS file, in that case you can do this <link type="text/css" rel="stylesheet"
    Posted to Web Forms (Forum) by sumitd on 7/17/2009
  • Re: How to write 2 where select statements in 1 query

    Refer this articles: http://www.dotnet-friends.com/Tutorials/ASP/TUTinASPdb82f070-86b2-403c-9a40-ca09209e74ed.aspx http://ondotnet.com/pub/a/dotnet/2002/12/16/multiresultsets_1202.html?page=1
  • Re: I have a requirement to save website addresses to a database

    I don't think you can do it. When you type asp.net or http://asp.net , browser convert is it i nto http://www.asp.net and looks for the URL. When request reached the server of the URL, it will be always http://www.asp.net .
    Posted to Getting Started (Forum) by sumitd on 7/16/2009
  • Re: Null reference exception in global.asax

    [quote user="sandhya_pathi"] In my application i am setting culture in Application_PostAcquireRequestState event in global.asax through session value. if (PageBase.Culture != null) { System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(PageBase.Culture); System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulturePageBase.Culture); } but when i run the application i am getting error as Null reference
    Posted to Getting Started (Forum) by sumitd on 7/16/2009
  • Re: help pls

    Refer below articles: VB.NET http://www.dynamicajax.com/fr/Creating_Excel_From_VB_DOT_NET-.html http://www.vbdotnetheaven.com/UploadFile/ggaganesh/ExcelSpreadsheet04182005093012AM/ExcelSpreadsheet.aspx C# http://www.codeproject.com/KB/cs/Excel_and_C_.aspx http://www.c-sharpcorner.com/UploadFile/ggaganesh/CreateExcelSheet12012005015333AM/CreateExcelSheet.aspx
    Posted to Getting Started (Forum) by sumitd on 6/30/2009
  • Re: how to Underline a Perticular string in Vb.net

    Try this: Public Shared Function Underline( ByVal value As String) As String If Not String.IsNullOrEmpty(value) Then Return "<u>" & value & "</u>" End If Return value End Function
    Posted to Visual Basic .NET (Forum) by sumitd on 6/30/2009
Page 1 of 186 (1851 items) 1 2 3 4 5 Next > ... Last »