Search

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

Matching Posts

  • Re: FileUpload

    [quote user="Pankaj18"] want to display path(Path of a word Doucument file) stored in a Table (Sql Server 2005) in FileUpload Control [/quote] won't be possible becuase of security issue AFAIK.. you may use a label or literal for the same.. hope it helps./.
    Posted to Web Forms (Forum) by kaushalparik27 on 7/11/2009
  • Re: Some Basic ASP .Net Security Questions

    [quote user="swjam"]* how would forms authentication be made to work if cookies aren't enabled? [/quote] Form Authentication provides an authentication token in the form of a cookie if the client’s browser type supports/enable cookies. Otherwise, it stores the authentication token in the URI. [quote user="swjam"]IIS and ASP.Net are both services[/quote] ASP.NET is a type of development framwork for web application / website development. [quote user="swjam"]* as I
    Posted to Security (Forum) by kaushalparik27 on 7/9/2009
  • Re: Textfield/Gridview update

    [quote user="homermg"] I have Gridview which is not shoing me the file after uploading, only after i relaod the page.[/quote] you need to rebind the GridView on btnUpload_Click event on successful uploading of a file to refresh the gridview with new data from db. [quote user="homermg"]After i uploaded the file the discription textbox is not clear i see still the discription i typed in.[/quote] why not to clear the TextBox once file uploaded successfully. Upload the file successfully
  • Re: how to remove , if the value is blank in merging

    SELECT CASE add1 WHEN NULL THEN '' ELSE add1 + ',' END CASE add2 WHEN NULL THEN '' ELSE add2 + ',' END CASE add3 WHEN NULL THEN '' ELSE add3 + ',' END AS add FROM address
  • Re: Textfield/Gridview update

    [quote user="homermg"]Im not sure how to do this.[/quote] how are you binding the gridview? just call that function again after successful upload of the file...
  • Re: how to remove , if the value is blank in merging

    [quote user="svibuk"], is removed but not able to merge the 3 columns a one column[/quote] my mistake.. it should be SELECT CASE add1 WHEN NULL THEN '' ELSE add1 + ',' END + CASE add2 WHEN NULL THEN '' ELSE add2 + ',' END + CASE add3 WHEN NULL THEN '' ELSE add3 END AS 'add' FROM address
  • Re: Ave Select statemnt in asp.net using vb.net

    Dim Conn As New SqlConnection(ConfigurationManager.ConnectionStrings("TempConn").ConnectionString) Dim result As Object Dim ConnStr As String = "SELECT AVG (Rating) FROM Rating" Dim cmd As New SqlCommand(ConnStr, Conn) Conn.Open() result = cmd.ExecuteScalar() If Not IsNothing(result) Then TextBox1.Text = Convert.ToString(result) End If Conn.Close()
  • Re: Textfield/Gridview update

    [quote user="homermg"] for to clear my textbox i found this: http://msdn.microsoft.com/de-de/library/system.windows.forms.textboxbase.clear(VS.80).aspx but unfortuntaly dont make it work. [/quote] after rebinding the gridview > clear the textbox by assigning "" or string.empty to Text property of the TextBox as: TextBox1.Text = string.empty;
  • Re: Textfield/Gridview update

    [quote user="homermg"] im not really know how i have to bind it manually[/quote] instead of wizard you can do it with code. check out here > How to Display Data using the .NET GridView Control, ASP.NET 2.0
  • Re: win form vs web application in dotnet

    [quote user="KumarHarsh"]1.Its easiest to deploy in client machine.[/quote] obviously; Web Application... window application will require installation of application/pre-requisites at each place where it suppose to be used. [quote user="KumarHarsh"]2.Client's machine configuration will be minimum like os,database etc.[/quote] client will only require a browser (for a minimal usage of web application).. [quote user="KumarHarsh"]what database should i choose mdb,text
    Posted to Getting Started (Forum) by kaushalparik27 on 7/8/2009
Page 1 of 331 (3309 items) 1 2 3 4 5 Next > ... Last »