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
U

utsav_verma

@utsav_verma
About
Posts
37
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • SQL Reporting Services Error
    U utsav_verma

    Hi when i m working on reporting services' rdl file, following error is coming - The table ‘Table1’ has rows that contain a different number of cells than the number of the columns in the table (including cells that span more than one column). I think i m trying a bit too complex interface with rdl files, lot of merged cells are used, i may rpovide html prototype of the work i m doing but it'd b better for me if u can give me some hint by reading error only. Thanks in advance Utsav

    Database html database help

  • HiiSQL Server Database Name
    U utsav_verma

    Hii i need to get a list of all the database in the sql server 2000. Thanks Utsav

    Database database sql-server sysadmin

  • Unexpected error
    U utsav_verma

    when i m compiling my solution, i m getting following error Unexpected error creating debug information file 'D:\FCI_DISTRICT\Utsav\FCI_DISTRICT\Ubics.Data.GenericCRUD\obj\Debug\Ubics.Data.GenericCRUD.PDB' -- 'D:\FCI_DISTRICT\Utsav\FCI_DISTRICT\Ubics.Data.GenericCRUD\obj\Debug\Ubics.Data.GenericCRUD.pdb: Access is denied. ' I have serached the net n tried deleted pdb, dll files n obj folder as well as switching between release n debug mode. Any help will be highly appreciated Thanks in advance Utsav

    ASP.NET help debugging announcement

  • IP addr on remote desktop
    U utsav_verma

    Hi I checked my ip address through my loca machine as well as through server, on which i was connected through remote desktop. Both returned same ip addr. Is it addr of my main proxy server? Thanks in advance Utsav

    System Admin sysadmin question

  • value of disabled select field
    U utsav_verma

    Hi guys

    ASP.NET

  • ORACLE DATABASE
    U utsav_verma

    Hi i am trying to up my oracle database but its giving no listener kinda error though i have already creted n activated default listener+one more listener. Neither i m able to connect my C# asp.net to oracle database. I dunno much abt oracle so any link to good tutorial may be a great help. Thanks in advance Utsav

    Database csharp help asp-net database oracle

  • using @@IDENTITY (or nething like this)for char datatype(sql server)
    U utsav_verma

    i think it was d stupid most question a person can ask, got d solution guys, dnt boter 4 that stupidness Utsav

    Database database sql-server sysadmin

  • using @@IDENTITY (or nething like this)for char datatype(sql server)
    U utsav_verma

    do i need 2 mention thaT CHAR primery key is not identity (i.e. autoincrement)??

    Database database sql-server sysadmin

  • using @@IDENTITY (or nething like this)for char datatype(sql server)
    U utsav_verma

    Hi guys i m having a table which primary key is char(7). i want to have last inserted row's id value but @@IDENTITY returns numeric rather character. I dnt hv ne field like time timestamp too :( Thanks in advance Utsav

    Database database sql-server sysadmin

  • Consolidation of database
    U utsav_verma

    :)Hi The situation i m facing is - i have several databases of lower level shops which needed to be consolidated on regional level, shops' DB will be ported on the regional HQ n on the basis of databases imported, reports will be generated. Well, do u guys have any experiance of such situation or if you can suggest me some link which describes such situation in form of case study or whatever. Thanks in advance Utsav Verma

    Database database

  • C# to VB.NET
    U utsav_verma

    Hi guys I m looking for some (free) code converter which can change C# code to VB.NET, any help will be highly appreciated Thanks in Advance Utsav

    C# csharp help

  • Using ntext thru ASP (not ASP.NET)
    U utsav_verma

    Hi I have declared a field as ntext but not getting any clue how can i use it thru asp (calling a stored procedure via ADO)...! Any help will be heartly appreciated. i m in real urgent need guys Thanks Utsav

    ASP.NET csharp asp-net database help question

  • Dynamic CheckBox Ctrl - what is wrong with code?
    U utsav_verma

    Hi mike I still stuck with my point, may b i m wrong xsoftdev2 wrote: pnlAdvSearch.Controls.Add(rb); what i feel this particular line will add ur RadioButtonListControl 4 every answer, i think it'd solve ur problem, this is the only point where i see d bug(in respect of checkbox too), try it. UTSAV

    ASP.NET question csharp database com beta-testing

  • Dynamic CheckBox Ctrl - what is wrong with code?
    U utsav_verma

    Hi mike I pointed one place which shld b d root 4 error, look at the comments inserted by me. foreach (DataRow drCurrent in tblAnswers.Rows) { if (row[0].Equals(drCurrent["QuestionID"])) { rb.Items.Add(new ListItem(drCurrent["AnswerChoice"].ToString(), drCurrent["AnswerID"].ToString())); } //Y R U DOING THIS pnlAdvSearch.Controls.Add(rb); } } // Radio //SUGGESTED HERE //pnlAdvSearch.Controls.Add(rb); I by the way u r doing, there will be a radio button list/CHECK BOX list for every row in the database. Check me if i m wrong since i didnt compile my thought UTSAV

    ASP.NET question csharp database com beta-testing

  • Selectedindex in datadropList in datagrid
    U utsav_verma

    Hi hasan well, shld b an easy task, try d following - private void dg_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { DropDownList lst=(DropDownList)e.Item.FindControl("ddl"); if(lst!=null) lst.SelectedIndex=SetNewCompanyIndex(e.Item.ItemIndex+1); } here dg is datagrid n ddl is the dropdownlist UTSAV

    ASP.NET database com sysadmin question learning

  • Process webform with many fields
    U utsav_verma

    Hi mike Since i m also not having a great experiance in .NET so i cant help u pin pointedly, but the code snap i gave in previous reply shld tell u d way to access the content of ALL controls, n by applying ur own logic u can make query, query string or whatever u want. Though using viewstate intelligently can reduce ur work. as u said,But how do I pass the SQL statement to the Searchresults.aspx page its better to pass the contents than build ur dynamic query on the target page n 4 that, i think, the best way is - 1 - access values of all controls 2 - put them in some hashtable kinda object 3 - put object in session, access session in next page Viewstate cant b helpful in this context since its limited to the page itself (as far as my knowledge is concerned, i dont wanna challenge biggies ;) ) Hope it help UTSAV

    ASP.NET database question csharp

  • Process webform with many fields
    U utsav_verma

    Hi mike what i feel, ur basic problem is to fetch the values of all controls avail on ur page, then redirecting set of those values to another form or to use'em 2 build query. Check me if i m wrong. I wrote a short code which i hope can help u after some customization, n yeah, since i m also beginner so may b its not d best way to do even that thing which i wanna do - private void Button1_Click(object sender, System.EventArgs e) { HtmlForm fr = (HtmlForm)this.FindControl("Form1"); for(int i=0; i UTSAV

    ASP.NET database question csharp

  • Unusual behaviour of .net
    U utsav_verma

    YEAH...! It works man it works. THANKS A LOT :D. But can u give me some link which can explain that what i wrote??? I never listen this way to do this task. UTSAV

    ASP.NET csharp javascript html question

  • witdh of Dynamically generated BoundedC olum
    U utsav_verma

    I wonder if it is possible...! It'll create zig zag table, i neither see nor tried ever UTSAV

    ASP.NET question

  • I also got a C puzzle
    U utsav_verma

    Well, once a person through a challenge to me, write any line in C without using semi colon i.e. ; any idea?? I guess, using assembly its possible. Let me b more clear after many COOL solutions - i mean printing a line, as we do thru printf Utsav

    The Lounge 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