Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

chathu03j

@chathu03j
About
Posts
19
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to set values to a formview control programmaically
    C chathu03j

    I have a formview bound to a SqlDataSource which I use to insert a record to the database. for this newly inserted record, I want to generate a unique ID programmaticaly - (say ProjectID) and assign it to the formview control (PropertyIDLabel). a method createPropertyID() generates a PropertyID & returns it, but I don't know how I can set this value to the formview control. Can somebody help - immediately please???

    ASP.NET database help tutorial question

  • how to get values from the database to a dropdown list [modified]
    C chathu03j

    try the following code: C#: ----- SqlConnection con = new SqlConnection(connectionString); String sql = "SELECT FROM "; SqlCommand cmd =new SqlCommand(sql,con); SqlDataAdapter sda =new SqlDataAdapter(cmd); DataTable dt =new DataTable(); con.Open(); sda.Fill(dt); DropDownList1.DataSource =dt; DropDownList1.DataBind();

    ASP.NET database csharp asp-net sql-server sysadmin

  • CheckedChanged not firing in UpdatePanel
    C chathu03j

    try adding the checkedbox to the trigger collection of the UpdatePanel

    ASP.NET help question

  • Using Login & LoginView controls
    C chathu03j

    Yeah! Please Tell me from scratch how to do it. I tried to use Login1_Authenticated() method to manually check the username & password but it didn't work. Please tell me how to do the login & Display the username in the login view control. Also How to handle LoggedInTeTemplate & AnnonymousTemplate... Thanks

    ASP.NET question csharp asp-net database sql-server

  • how can i display data in listbox?
    C chathu03j

    use the following coding... String sql = "SELECT Category Name FROM Categories"; OleDbConnection con = new OleDbConnection(connectionString); OleDbCommand cmd = new OleDbCommand(sql,con); OleDbDataAdapter da = new OleDbDataAdapter(cmd); DataTable dt =new DataTable(); con.Open(); da.Fill(dt); ListBox1.DataSource = dt; ListBox1.DataBind();

    ASP.NET question database

  • How to use FormView in my webForm ?
    C chathu03j

    well, if u r using VS.NET 2005 u can do it in a very simple way by using an SqlDataSource object. You can configure the SqlDataSource object by appropriately selecting the server name, the database and the table u want to add the data. Then it automatically generates the SELECT,INSERT,UPDATE,DELETE statements or u can use ur own stored Procedures to do them. then drag n drop a formview on to the application and set it's datasource to SqlDataSource. e.g: FormView1.DataSource = SqlDataSource1; FormView1.DataBind();

    ASP.NET tutorial question announcement

  • FormView Issue
    C chathu03j

    well, if u r using VS.NET 2005 u can do it in a very simple way by using an SqlDataSource object. You can configure the SqlDataSource object by appropriately selecting the server name, the database and the table u want to add the data. Then it automatically generates the SELECT,INSERT,UPDATE,DELETE statements or u can use ur own stored Procedures to do them. then drag n drop a formview on to the application and set it's datasource to SqlDataSource. e.g: FormView1.DataSource = SqlDataSource1; FormView1.DataBind();

    ASP.NET database help

  • Using Login & LoginView controls
    C chathu03j

    can u pls put down a sample code here? thanks in advance.....

    ASP.NET question csharp asp-net database sql-server

  • Using Login & LoginView controls
    C chathu03j

    Hi, I have a login control in my ASp.NET application. I use 'Users' table in SQL Server 2005 to authenticate the login. If the username & password are correct, I want to display the username in the loginview control. How can I do that?:confused:

    ASP.NET question csharp asp-net database sql-server

  • calling a javascript
    C chathu03j

    Hi I want to call a javascript from a client page. the javascript is in the server. can I do that? If so how?? thanks for any reply!!

    Web Development javascript sysadmin question

  • using file uploader in a gridview
    C chathu03j

    I want to have a File uploader inside a grid view control. I have bound this grid view to a datasource, so can I use the file uploader inside the gridview? I will have to writer manual coding to upload the file, isn't it? can somebody tell me how I can sent the filename of the uploaded file to the datasource parameter?? thanks for any answer!!!

    ASP.NET

  • coding for crystal reports in ASP.NET
    C chathu03j

    Hi all, can smbody please give me the codings to create a crystal report in ASP.NET? I need to extract data to the report from a specified query. How to provide the query to the crystal report?? and how do you display it on the web page, can I use the reportviewer to do that or is there anty other method? Thanks for any reply!!

    ASP.NET csharp asp-net database tutorial question

  • POST method in ASP.NET
    C chathu03j

    how do you retreive the variable values that you post from one page, in the calling page? that is, in PHP you can use $variable=$_POST['control name'] is there a similar thing in ASP.NET? I want to know of a method other than passing variables with the URL.

    ASP.NET csharp php asp-net question

  • PHP echo equivalent???
    C chathu03j

    HI, is there a ASP.NET equivalent for PHP's echo command? Or else is there a way to write on a web page without using a label or a textfield? Thanks for any reply!!

    ASP.NET csharp php asp-net question

  • creating dynamic crystal reports
    C chathu03j

    Hi all, I want to learn how to create dynamic crystal reports in C#.NET. that is, when I pass parameter values through the application interface, they should be the criteria for the crystal report. How do you do this. Can anyone give me any online tutorials I can refer to. thanks for any reply...

    C# csharp tutorial

  • To format date in mysql
    C chathu03j

    Hi all, How do you format the system date according to mysql date format? When I give the data type as date in mysql, there's an error message saying cannot convert data/time to mysql date format. How do I overcome this? Thanks for any reply.....

    C# question mysql help

  • creating control arrays in vb.net
    C chathu03j

    how do you create a control array in vb.net?

    Visual Basic csharp data-structures question

  • create a control array in C#
    C chathu03j

    how do you create a control array in C#?

    C# csharp data-structures question

  • connect a mysql database to c# project
    C chathu03j

    I'm quite new to c#. Can smbody pls tell me how to connect a mysql database to a c# project? Thanks

    C# csharp database mysql tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups