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
V

venkata lakshmi prasanna

@venkata lakshmi prasanna
About
Posts
34
Topics
25
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How To Deploying asp.net application using Visual studio 2005
    V venkata lakshmi prasanna

    hi During setup and deployement selecting Project Output to open the Add Project Output Group dialog box. In add project output group dailog box , project and configuration combobox are not having any items to select. how to solve this, and how to deploye a web application. thanks

    ASP.NET csharp workspace asp-net visual-studio tutorial

  • (VB6.0)validating a textbox for MM/dd/yyyy format
    V venkata lakshmi prasanna

    iam validating the textbox in lostfocus event but it is changing values for month to date and viceversa when the day is single digit. this is the code iam using,please mail how to weite code for validating.thanks Private Sub txtfromip_LostFocus() If txtfromip.Text <> "" Then On Error GoTo errtrap If Not IsDate(Format(txtfromip.Text, "MM/dd/yyyy")) Then MsgBox "Invalid Date. Enter Valid Date. Format is 'MM/dd/yyyy'", vbInformation txtfromip.SetFocus SendKeys "{home}+{end}" Else txtfromip.Text = Format(txtfromip.Text, "MM/dd/yyyy") End If Exit Sub errtrap: MsgBox Err.Description, vbCritical, "Error No:" & CStr(Err.Number) Err.clear End If End Sub

    Visual Basic help tutorial

  • Gridview Paging
    V venkata lakshmi prasanna

    Hi,friends i hav set allow paging property to true. Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load cmd.Connection = cn cmd.CommandText = "select * from EMP_DETAILS" cn.Open() grd.DataSource = cmd.ExecuteReader grd.DataBind() cn.Close() End Sub This is the error iam getting. The data source does not support server-side data paging. Suggest me to handle the error. Thank u

    ASP.NET sysadmin help

  • ASP.Net Tree View--urgent
    V venkata lakshmi prasanna

    Can u tell me how this could be checked abnd if not present what i should do?

    ASP.NET data-structures csharp asp-net database debugging

  • ASP.Net Tree View--urgent
    V venkata lakshmi prasanna

    Iam wriiten the code for ASp.Net 2.0 using the Control TRee View and database to display in a tree view. But when I run the code Iam getting an error as "The file web.sitemap required by XmlSiteMapProvider does not exist." Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.InvalidOperationException: The file web.sitemap required by XmlSiteMapProvider does not exist.

    ASP.NET data-structures csharp asp-net database debugging

  • Code for Exit button in ASP.Net 2.0
    V venkata lakshmi prasanna

    I have designed a small application in ASP.Net 2.0 where I have to know the code for Exit button present in the login page. Please send me the code urgently thanx in advance

    ASP.NET csharp asp-net

  • Running VS 2005 Web application in Another computer
    V venkata lakshmi prasanna

    I am new to VS 2005 and I have designed an application in ASP.net 2.0 . For running the same application in another computer,but its not working. Even I have removed "Use proxy server for LAN connection" also in that computer. and I have entered http://computerame/webpage.aspx, its not working even I checked for http://computername/application folder/webpage.aspx, it is not working Please help me urgently Thanx in advance

    ASP.NET csharp asp-net visual-studio sysadmin help

  • Which event of combo box I should use-----------Urgent
    V venkata lakshmi prasanna

    Iam new to ASP.Net, I have designed a form which contains a combo box and some text boxes and a Gridview. Now When Iam Executing the program it will displays complete records in the Grid in the Pageload Event. But when I change my text in Combo Box it is not refreshing the Data according to the Selection of Combo Box. So, Which event I should use for the above problem? I used "SelectedIndexChanged" Event for changing the data in the gridview according to the selection of Combo Box but it is not updating the details in the Gridview. Thanx in advance

    ASP.NET csharp css asp-net help question

  • Regarding updation in Datagrid-----Urgently
    V venkata lakshmi prasanna

    That is DataAdapter.Update

    Visual Basic csharp database help announcement

  • Regarding updation in Datagrid-----Urgently
    V venkata lakshmi prasanna

    Iam new to VB.Net2005. In the Form Load Event Iam Displaying Data into Datagridviewand I have written a code for Double-click event which is going to disply the data in the relevent textboxes from datagridview. After Displaying I want to modify the Data and updating it into the Database. For this I have written the code as: ds.Tables("emp_details").Rows(n).Item(1) = txtsurname.Text ds.Tables("emp_details").Rows(n).Item(2) = txtname.Text ds.Tables("emp_details").Rows(n).Item(3) = txtdesg.Text ds.Tables("emp_details").Rows(n).Item(4) = txtplace.Text ds.Tables("emp_details").Rows(n).Item(5) = txteligamt.Text ds.Tables("emp_details").Rows(n).Item(6) = txtfno.Text ds.Tables("emp_details").Rows(n).Item(7) = txtyear.Text da.Update(ds.Tables("emp_details")) But Iam getting the error as : "Update requires a valid updatecommand when passed Datarow collection with modified rows". Please suggest me correct code for this updation urgently ThanX in advance

    Visual Basic csharp database help announcement

  • What does it mean?
    V venkata lakshmi prasanna

    Can u send it to my mail prathap_middi@yahoo.co.in

    Visual Basic help com sysadmin question

  • Getting values from datagridview and showing in relevant textboxes
    V venkata lakshmi prasanna

    Iam new to VB.Net 2005 .I want to write a code such that whenever the user double-clicks on Datagridview the corresponding row values should be displayed in the relevant Textboxes. I have typed as txtecode.text=datagridview.item(columnindex,rowindex) txtecode.text=datagridview.item(0,DATAGRIDVIEW.CURRENTROW.INDEX) But it is showing error Please give me the Code to display the data Tahnk you in advance

    Visual Basic csharp database help

  • (VB.NET) How to execute Select Max("")
    V venkata lakshmi prasanna

    hi iqbal ,it is displaying a message "The select statement includes a reserved word or an argument name that is misspelled or missing, or the punctuation is incorrect".

    Visual Basic csharp tutorial

  • (VB.NET) How to execute Select Max("")
    V venkata lakshmi prasanna

    iam vb6.0 programmer,this code works fine in vb6.0,how to write same code in vb.net

    Visual Basic csharp tutorial

  • (VB.NET) How to execute Select Max("")
    V venkata lakshmi prasanna

    iam new to vb.net,iam posting the code i hav written please make modifications where ever neccesary cmd.Connection = cn cmd.CommandText = "select max(EMP_CODE)+1 as lastfrom EMP_DETAILS where EMP_PLACE='" & ComboBox1.Text & "'" cn.Open() While dr.Read cmd.ExecuteScalar() TextBox1.Text = dr.Item("last") End While cn.Close()

    Visual Basic csharp tutorial

  • Customising or changing the Position of Text box
    V venkata lakshmi prasanna

    Hi Yuvachandra, Thank you for your reply

    ASP.NET csharp asp-net tutorial question

  • Customising or changing the Position of Text box
    V venkata lakshmi prasanna

    Iam new to ASP.Net 2.0 I want to know how to change the position of any control (Text box, label etc) from one place to another place. Iam unable to drag the control.How is this possible? Thanx in advance

    ASP.NET csharp asp-net tutorial question

  • Reports to EXCEL
    V venkata lakshmi prasanna

    I have done a project in VB.Net and Access. Where I have to show the Report to Excel from ACCESS thru VB.Net Please give me the code to print data to excel

    Visual Basic csharp

  • Setting Wrap text for a label in VB.Net
    V venkata lakshmi prasanna

    Iam designing a form with labels and Textboxes. The TExt of the label is long. SO I have to set Wrap text for the labels. Please tell me how to set wrap text for a label in VB.NET

    Visual Basic csharp tutorial

  • how to open asp.net web application
    V venkata lakshmi prasanna

    yes Mr coolest iam using VS.Net 2003 and configured iis, the problem is ,it is showing a msgbox"upgrade ur asp.net1.0 to asp.net1.1(Recommende)". How to do this. thankx

    ASP.NET csharp asp-net visual-studio tutorial
  • Login

  • Don't have an account? Register

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