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
P

Pallavi Bhoite

@Pallavi Bhoite
About
Posts
29
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to add config file in Windows App .NET
    P Pallavi Bhoite

    H, Right click on solution explorer then select Add option in that New Item. It will open dialog box in that, from last 3 rd option is Application config file. Select that option it will add App.config to solution.

    pallavi

    Windows Forms csharp sharepoint com business tutorial

  • Question releted to sql query.
    P Pallavi Bhoite

    Hi rahul, can u explain me u r table relationship? means is your first table have blogid as primary key and second table with blogid as forgien key? can u give me few table content of both tables (2, 3 records for both tables)?

    pallavi

    ASP.NET database question

  • gridview column width
    P Pallavi Bhoite

    Hi jai, set column width and wrap property to true.

    pallavi

    ASP.NET help

  • grid view problem
    P Pallavi Bhoite

    Hi, you can add row in datatable which is bind to gridview so it will create new row in gridview .

    pallavi

    ASP.NET help question css announcement

  • Question releted to sql query.
    P Pallavi Bhoite

    hi, can u try query like this .. and tell me what is out put now... select blog_new.blgid,blog_new.blogtitle,blog_new.createddate from blog_new inner join blog_post on blog_new.blgid = blog_post.blgid and blog_new.status= 1 order by blog_post.editeddate desc

    pallavi

    ASP.NET database question

  • Question releted to sql query.
    P Pallavi Bhoite

    Hi Rahul, can u show me out put here .. as i dont know if u r using distinct blgid it is showing 3 records to u ? Do u have one record in first table and 3 records in second table with same ids ?

    pallavi

    ASP.NET database question

  • How to find control in Javascript
    P Pallavi Bhoite

    Hi, you need to find that control on any event or what ? you can use 2 ways : 1. In code behind itself u can add attribute to control e.g you can use button click event btnAdd.Attributes["onclick"] = "javascript:DisableControl('"+ddlCombo.ClientID+"');"; and in javascript if(document.getElementById(ddvalue).getAttribute("selectedIndex") or u can directly pass selected index ito javascript 2. in your javascript document.getElementById('Combo1').getAttribute ("selectedIndex") will give u control's index but i m not sure.

    pallavi

    ASP.NET question javascript database tutorial

  • Question releted to sql query.
    P Pallavi Bhoite

    Hi Rahul, if you have same ids how will u get 3 records ..its one record na ..:) see in join, u join in which field is matter a lot .. so if u are joining on blogid it must be unique...and so it will have uique ids no matter title same or diffrent. if u have any query plz ask :)

    pallavi

    ASP.NET database question

  • Question releted to sql query.
    P Pallavi Bhoite

    hi Rahul, you are using distinct blgid and join on blgid so even though thr are 3 same blogtitle but if they have diffrent id it will return 3 records

    pallavi

    ASP.NET database question

  • GridView Problem..
    P Pallavi Bhoite

    hi durga, put OleDbCommand cmd = new OleDbCommand(strQuery, myConnection); cmd.ExecuteNonQuery(); code in foreach loop .. now u will get what u want and put where cluase in your query :-D

    pallavi

    ASP.NET database help announcement

  • GridView Problem..
    P Pallavi Bhoite

    Hi DKalepu, I think , string str = ((TextBox)dgRow.FindControl("txtPartNo")).Text.ToString(); this line your code giving you problem as you finding control but grid view is having rows of controls so it take last value and gives u .. try to get values for perticular row . try this , myGridView1.Rows[dgRow.RowIndex].FindControl("txtPartNo")).Text.ToString(); i am not sure ..try some R&D on this u will find answer

    pallavi

    ASP.NET database help announcement

  • mail
    P Pallavi Bhoite

    thanx michael

    pallavi

    ASP.NET sysadmin

  • mail
    P Pallavi Bhoite

    thanks Michael can i use exchange server ,lotus notes for reading mail's content in same way as we use smtp.. as i dont know much about exchange server and lotus notes

    pallavi

    ASP.NET sysadmin

  • mail
    P Pallavi Bhoite

    I want to send mail and read mail for from and subject fields from SMTP,Exchange server and lotus note in application, anybody have any idea about this ....any site where i can find solution...i serached alot but not find any good solution...

    pallavi

    ASP.NET sysadmin

  • how to create newsletter in asp.net
    P Pallavi Bhoite

    Hi Vasudevan, Thank you for your help ..:)

    pallavi

    ASP.NET csharp asp-net tutorial

  • How to implement Ajax Validator Callout Control
    P Pallavi Bhoite

    Hi Sajan, first take one textbox , apply required field validator to it ... set its property(control to validate = textbox ,display property =none and error message ) then add validator callout extender to page set its TargetControlID property to control i.e textbox and u done.

    pallavi

    ASP.NET csharp help tutorial

  • how to create newsletter in asp.net
    P Pallavi Bhoite

    hi , i want to create newsletter in my webapplication ..can any one tell me idea behind this and site which have examples for creating newsletter .. Thanx in advance ,

    pallavi

    ASP.NET csharp asp-net tutorial

  • based on cell datagrid dropdown value want to change...,
    P Pallavi Bhoite

    Hi Magi, consider one example. If my dropdown list have datasource which conatin employee id and employee name. your display field will be employee name and value field will be employee id. so if your datagrid is having datasource in which it contains employee id column. it will show respective name in dropdown list column...

    pallavi

    ASP.NET tutorial help question

  • sqldataadapter. update
    P Pallavi Bhoite

    Hi Sebastian , I never used command builder ..i use sqlcommand object..check if it works for u ... SqlCommand updatecmd = new SqlCommand(strSql, sqlcon); SqlCommand deletecmd = new SqlCommand(strSql1, sqlcon); SqlCommand insertcmd = new SqlCommand(strSql2, sqlcon); SqlDataAdapter sda = new SqlDataAdapter(); sda.UpdateCommand = updatecmd; //here cmd generater for update sda.DeleteCommand = deletecmd; //here cmd generater for delete sda.InsertCommand = insertcmd ; //here cmd generater for insert sda.Update(dsStorageArea, "StorageArea");

    pallavi

    ASP.NET database announcement

  • ASP.NET Create Session Problem
    P Pallavi Bhoite

    hi, how i am using session in my application .. its in c#.. Session["sername"]=TextBox1.Text //its right then on page 2 no need to define variable again Label3.Text = "Welcome " + Session["Username"].ToString(); check ,if this giving u value or not. :)

    pallavi

    ASP.NET help csharp asp-net question learning
  • Login

  • Don't have an account? Register

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