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
H

Hemant Mane

@Hemant Mane
About
Posts
17
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Strange HTML nested table problem
    H Hemant Mane

    That page is not online now. I am Using Internet Explorer 6.0 with service pack 1. The sturcture is something like tree view. User can drill down to the Parent To Child. User can expand and collapse the records so I need to use the nested datagrid which finally render the nested table. The posted code is part of html output of that page. You can view that output if you want me to mail that html to you then i'll mail to you.

    Web Development html help

  • Strange HTML nested table problem
    H Hemant Mane

    Hi, Thanks for your reply. I am using Nested DataGrid in one of my page. and the output of that datagrid is nested tables when it renders the nested datagrid. I removed all the style from the table but still it is not showing me the 14th level. I noticed one more thing that if I remove top table i.e. root table then it shows me the 14th level. That means it just shows me 12 levels only. So, is their any limit for nested tables. I google this problem but i found that their is no limit for nesting the tables. Then why it shows only 12 nested table. I have given an example of frontpage for all to see the design view as well as preivew. In design view it's showing me all the levels but when I preview that page it shows levels till 13. I also see that output in browser (Internet Explorer). When that perticular page is displayed to the user, user can see only 12 levels but in view source of that page their are more levels. Is this is a limit of table or any drawback of html when it displays the output in browser? Please suggest.

    Web Development html help

  • Strange HTML nested table problem
    H Hemant Mane

    Hi, I have one problem with nested tables. following is spinpet for html Untitle Root   pqr 0 4 1 BBB   xxx 1 2 2 AAA   xyz 0 0

    Web Development html help

  • WebCustomControl
    H Hemant Mane

    Hi Amit, thanx for reply. I know i can use the text property but for some reseason there is another property which i want to set from clientside and get it in serverside. its like i am adding custome attribute to a control and setting the values. its not related to the text but i am setting another value. I am doing some operation in client side after that i am setting one value for xyz and accessing that value from serverside. do you know any other way to do it? Hemant Mane.

    ASP.NET tools question

  • WebCustomControl
    H Hemant Mane

    Hi, I have create a webcostom control for TextBox and add one property "Xyz". [Bindable(true)] [Category("Appearance")] [DefaultValue("")] [Localizable(true)] public string Xyz { get { String s = (String)ViewState["Xyz"]; return ((s == null) ? String.Empty : s); } set { ViewState["Xyz"] = value; } } and i have set the value for Xyz from client script like function setvalue() { form1.txt.Xyz = "Some Text"; } on postback i want the value which is set from clientscript but the value is not set. Is there another way to set the value from clientscript and get it at serverside?

    ASP.NET tools question

  • Soundex In Ado.net Dataset Search
    H Hemant Mane

    I Want to Use Soundex in Dataset search But it gives "The expression contains undefined function call soundex()." code for Like Function dataset.Tables[0].Select("fname like '"+name+"%'"); and following Code I Want To Use For The Select dataset.Tables[0].Select("Soundex(fname) =Soundex ("+name+")"); Any Solution Please Give Reply As Early As Possible

    Database csharp

  • Creating automatic updating web pages
    H Hemant Mane

    Why don't you use iframes. when user complete the action on that event pass the parameter to iframe which call the another page and on that page you can write the code of save. it will refresh only iframe not the whole page. with the help of iframe you can do easly update and client page cannot be refresh only iframe will refresh for that particular task of saving first make a page and onload of this page write the code for saving perticular data to database and the saving code will be the parameter that u pass to tha iframe which call the page of saving. and in iframe just give source of that page with passing parameter. that time only iframe will refresh and your saving page do the task of saving and client can do his work without whole page loading. If u understand this then ok or mail me i will send u whole code of iframe how they work and how they usefull when u dont want to load or refresh whole page. (Hemant U. Mane)

    Web Development tutorial sysadmin tools question

  • Accessing child page function through JavaScript
    H Hemant Mane

    Hi frinds, I am working on a project where i want to access the function of child web page i know if u want to access the function of parent webpage u can access it through window.opener or document.parent But i want to access the function of child form is there any code to access the child form or i can make the object of child form and then access the function. thanks (Hemant U. Mane)

    Web Development javascript

  • Undo In Javascrip
    H Hemant Mane

    Hi Friends, I am developing a web site In one web page there are 2 dropdownlist and containg save data for example select1 1)abc 2)xyz 3)pqr and for Select2 1)abc 2)xyz 3)pqr If user select abc in select1 and then he select same abc in select2 a error messege through to user that You choose Abc in select1 so please select diffrent item no this time i can give index no to select2 but i want the last value of select2 suppose selet2 has pqr selected and then he try to select abc then after error he atomatacally select the last value i.e. pqr In short Undo in javascript for dropdownlist Thank You In Advance

    Web Development javascript database help tutorial

  • Click Event Fires During Form Load
    H Hemant Mane

    i created simple project using C# and added one textbox and button now i write code "TextBox1.Text = DateTime.Now.ToLongTimeString();" in button event and set breakpoint on this line now when i click on button in runtime event fires and textbox1.text becomes current time and breakepoint got yellow but now when i click on refresh the same event fires again plzzz help me aj

    ASP.NET csharp debugging help

  • Declare Varibales In SQL 2000
    H Hemant Mane

    Hi friends I make a function in sql 2000. I pass One parameter to that function and i return a table from that function i have 3 different tables. 1 is master table. e.g i have table of doctor i.e master and another 2 are 1 is specialization and another is status in specialization there are specialities of doctror like GP, Physician etc and in status the status of doctor is Important and very Important etc I want result like this Important very Important GP 4 5 Phy 3 2 first row indicate 4 Gp doctors are important and 5 are very important i make a function to return this result but i dont know how many Specialities in table and how many status so i want to alter temperory table in the function create function abc(@docid) returns table @tab (no varchar(10)) as begin declare @spec varchar(20) declare @vis varchar(20) declare @no int declare @ctr int select @ctr = count(visittypeid) from doc_visitytype where visitytypeid <> 0 while (@ctr >= 0) begin select @vis = visittype from doc_visittype where visittypeid = @ctr ALTER TABLE @tab ADD @vis varchar(10) end return end this code add the columns in the temporary table but @vis is local veriable how can i assign a veriable that it should take value of @vis as a coloumn name Thank You

    Database database question

  • Add a Blank row in a datagrid without using dataset
    H Hemant Mane

    I want to insert blank row to datarid without using dataset on the specify itemindex of datagrid plzzz help me thanx in advance aj

    ASP.NET help

  • Event in visual C#
    H Hemant Mane

    Hi, I want to use Keypress event in my windows form. When user press enter that time i want to catch that event. and how to use the keypress event because in visual c# i never seen ASCII keys. Tell me how to catch keypress event and use ASCII values for trap the key which is press by the user. Thank You for Help, (Hemant Uttam Mane)

    C# csharp help tutorial

  • Exit statment in visual C#
    H Hemant Mane

    Hi friends I have a problem. I have a login form in visual C# in which user must enter username amd password and then click login. If username or password is blank then one messegebox display that "Please enter username and password". After that i want to exit that sub. In Visual besic .Net there is command "EXIT SUB". In visual C# there is a static method call Application.exit but it is for close the whole application but i want only to exit the event and application should not be close. Please reply me as early as possible Thank you. (Hemant Uttam Mane) :)

    C# csharp help

  • Getting Started with Com+
    H Hemant Mane

    Hi, I am student. Right now i am learning on COM+. And doing one on course project in VC#.NET and COM + component. This is distributed application. In that there is server on one machine and client on other. But i am little bit confused in that server client techonlogy. I have to make database connectivity for validating users and other inforamation. That time i creat on clint and one server and one component for connecting client to server. But if i want to make one more form can i use same server that i already created for the login. and how to use many forms to connect server and then connect to database i am confused in this stuff. Please Help me. I hope someone help me for that Thanking You, (Hemant Uttam Mane)

    COM csharp learning database com sysadmin

  • Windows Service
    H Hemant Mane

    Hi, I want to make a windows service that run in the process. I want that at specific time (Time Which Mention in the code) a message box will be display and when user click on OK then another application should be open. I hope someone help me Thanking You (Hemant Uttam Mane)

    Visual Basic help

  • Implementing Security in C# Through Any Hardware
    H Hemant Mane

    Hello All, I am student from India. Right now i am working on one on course project in C# and COM+ components.In that project i want to implement security through any hardware like floppy or CD. I try the 'VOL' command from command line to get the hardware Volume serial number like Floppy or CD. I i notice one thing that it is not uniq. If u make ISO of that Floppy or CD and write it then the Volume serial number will be the same. So there is no uniqueness in this. I want to implement security in my code from any hardware. How can i implement that one. If any one have good Knowledge about that Please mail me at Hemant_Mane2003@yahllo.com. And if there is more secure way than the encryption and decryption please sent me that stuff or guide me about that. Thanking You. (Hemant Uttam Mane)

    C# security csharp com hardware 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