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
S

Sonia Gupta

@Sonia Gupta
About
Posts
1.2k
Topics
420
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • recommendation for adding the class file
    S Sonia Gupta

    u r attempting to add a class to asp.net application , for a class to be generally consumable to ur site , it should be placed inside the app_code folder , would u like to place the class in the app_code folder Why it is recommended?

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET csharp asp-net question

  • Problem in Displaying msgBox.
    S Sonia Gupta

    ButtonName.Attributes.Add("onclick","alert('USER MSG');");

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET tools help tutorial

  • duplicate url in the web.sitemap file
    S Sonia Gupta

    Hello how should i add the duplicate url in the web.sitemap file?

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET question

  • tertiary operator
    S Sonia Gupta

    i was trying to do like the iif in vb.net and same can be done in c# via a == 1 ? "2" : "3" and i want to do in the html file, not in code behind.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET database sysadmin docker help question

  • tertiary operator
    S Sonia Gupta

    There is a bit type field in my database , which stores 0 0r 1 i am writing the following code <asp:Label ID="lname" runat="server" Text='<%#DataBinder.Eval(Container.DataItem,"HighAltitude").ToString()=="0" ? "Normal" : "High" %>'></asp:Label> I have two records in my database , first occupy 0 and other occupy 1 but my both records in the gridview shows High status. Please help.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET database sysadmin docker help question

  • root node problme in sitemap file
    S Sonia Gupta

    i have menu control which contains three root nodes admin --page1 --page2 --page3 transaction --page4 --page5 --page6 reports --page7 --page8 --page9 i want to use the sitemappath control but in the site map path , i can add one root node thus it creates one root node only.How should i avoid this problem. I mean when i click the page 4 , then the sitemap should show Home > Transaction > page4 But xml file does not allow more then one root node.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET xml help

  • outlook express new message window
    S Sonia Gupta

    THANK You:) Do u know a link pertaining to the utlility of SitemapPath control along with menu control?

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET csharp asp-net

  • outlook express new message window
    S Sonia Gupta

    how should i write the code to invoke only the new message window . as u said to use mailto , how should i use it?

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET csharp asp-net

  • outlook express new message window
    S Sonia Gupta

    how should i invoke the mail message window (new message window) of outlook express in asp.net

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET csharp asp-net

  • tree node in datalist
    S Sonia Gupta

    i have a treeview , which contains four root nodes , each node contains it's sub nodes , i want to display each root nodes along with it's sub nodes seperately in datalist. I mean datalist will have four template columns .How should i do it?

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET data-structures question

  • treeview node color change in click [modified]
    S Sonia Gupta

    in the treeview , at runtime , i want to change the font color of the treenode , in javascript , how should i do it , it is working very fine , in the server side, but this leads to postback.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    modified on Sunday, April 6, 2008 4:08 AM

    ASP.NET javascript sysadmin

  • connection failed during web service
    S Sonia Gupta

    i have a web site , and trying to access the sql server 2000 , it is establishing the connection , but if i try to establish the connection by the web service , it says Cannot open database requested in login 'Vehicle_Details'. Login fails. Login failed for user 'sa'.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    ASP.NET database sql-server sysadmin

  • sorting of a string column
    S Sonia Gupta

    i can use the union query to first select the numeric and then an another union query to sort alphanumeric. Am i doing right?

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# database algorithms help code-review

  • two filters in List class find function
    S Sonia Gupta

    How can i use two filters in the following code person pp = obj.Find(delegate(person p) { return p.name == "abc"; }); because there should be one return statement in a single block. So how will i declare another filter to refine the record

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# question

  • filtering the numeric and alphanumeric values
    S Sonia Gupta

    i have a column of datatype string in the sql server 2000 database. following is the data in that table 1 2 11 12 a if i sort the data then output comes in the following manner 1 11 12 2 a , but i want 1 2 11 12 a to sort out this problem i thought to make two unioun queries to fileter the numeric values and alphanumeric values. no the questio is can somebody tell me how to filter the numeric and alphanumeric values .

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    Database database sql-server sysadmin help tutorial

  • sorting of a string column
    S Sonia Gupta

    I have the column of type string in the database Following is the data in that column 1 2 11 12 21 abc If i sort the table with the help of this column then the output come in the following manner 1 11 12 2 21 abc can i improve the order actually i want the output like 1 2 11 12 21 abc

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# database algorithms help code-review

  • find function of List
    S Sonia Gupta

    Sorry Pete..... Thanks a Lot , :) For sorting out my problem.and one more thing , i am the luckiest one , for having discussion with the MVP Really :)Thanks a Lot

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# help

  • find function of List
    S Sonia Gupta

    This time , i think u did not care to look the question carefully. the new question has nothing to do with the prior one.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# help

  • find function of List
    S Sonia Gupta

    can i use two filters in the find statement , according to there should not be two return statements in a single block. But i have to set two where conditions to refine the record.

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# help

  • find function of List
    S Sonia Gupta

    Problem is the following line of code. There is accuring an error. argument 1 cannot convert form annonymous method to predicate obj.Find(delegate(person p) { return p.age = 12; });

    Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.

    C# help
  • Login

  • Don't have an account? Register

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