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
R

rockyl

@rockyl
About
Posts
50
Topics
21
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem in date picker in edit template of the gridview
    R rockyl

    Hi In edit mode of the gridview, I have provide date picker. For this I am opening a new page containing the calender using java script: window.open('CalendarPopUp.aspx?textbox=tbxSetDate','cal','width=250,height=225,left=270,top=180') But I am unable to take the selected date back to the parent page. When I am trying to access the textbox of the current row in gridview's rowcommand like: TextBox tbxSetDate= (TextBox)(GridView2.Rows[Int32.Parse(e.CommandArgument.ToString())].Cells[2].FindControl("TextBox2")); I am getting null instead of the textbox object. Any idea here? Regards, Rocky

    Rakesh

    ASP.NET java tools help question

  • How to capture the date selected in a pop up
    R rockyl

    Thanks for the response. Where you want me to put this code in the child page. I mean in which event?

    Rakesh

    ASP.NET tutorial

  • How to capture the date selected in a pop up
    R rockyl

    Hi, I have a web page where clicking on a button I am opening another web form using window.open function. Now I want to know how to capture the date selected by the user and put it in the parent web form. Regards, Rocky

    Rakesh

    ASP.NET tutorial

  • What does IISRESET do?
    R rockyl

    Hi, I can clearly see in the command prompt that the IIS gets stop and then started when I run the command IISRESET. What I was looking is that what happens internally in the IIS, which fixes lot of issues raised in the webapplications. How it is a single solution for many problems? Thanks, Rakesh

    Rakesh

    ASP.NET question

  • What does IISRESET do?
    R rockyl

    Hi, Some times any of the webpage does not behave correctly, I was asked to do IISRESET. What does this do actually? Thanks & Regards, Rakesh

    Rakesh

    ASP.NET question

  • Problem with Date Picker
    R rockyl

    Hi, Which version are you using? If you are using .net 2.0 then probably you may use CalenderControl which comes with .Net. That serves your purpose I feel. But the thing is the control do not pops up in a different window, instead it gets visible in the same page. Its really good control with lot of readymade functionality. hope this works for you. Regards, Rakesh

    Rakesh

    ASP.NET help java javascript tools question

  • Exception Handling
    R rockyl

    Great! that worked... Thanks a lot.

    Rakesh

    ASP.NET question csharp database visual-studio sysadmin

  • Exception Handling
    R rockyl

    hi, My intention is to return a dataset from the web method so how can I mention the return type as string? Regards,

    Rakesh

    ASP.NET question csharp database visual-studio sysadmin

  • Exception Handling
    R rockyl

    Hi, One of my webmethods throw an exception: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: The provided Supervisor emailID either invalid or do not exists in the database at ManageEmployeeServices.AddEmployee(Int64 EmpID, String EmpName, String EmpEmailID, String SupervisorEmailID, String LocationName) in c:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\ManageEmployeeServices\App_Code\ManageEmployeeServices.cs:line 53 --- End of inner exception stack trace --- And In my client I want to display only the bolded text as it is the actual error message. So how can I trunctate all the unwanted string from the error message? Thanks:

    Rakesh

    ASP.NET question csharp database visual-studio sysadmin

  • database/initial catalog
    R rockyl

    Yes Sonia, they are!

    Rakesh

    ASP.NET database

  • database/initial catalog
    R rockyl

    Hi Sonia, Initial Catalog" or "Database" represents the Database name. Hope ur question is answered.

    Rakesh

    ASP.NET database

  • Whats new with Validation controls in ASP.Net2.0
    R rockyl

    Hi, I am wondering whats new with the validation controls in ASP.Net 2.0. Because I am able to see all the validation controls that are available in VS2005 are also available in VS2003. So whats new with them. When I was browsing MSDN I have seen the below sentence: "Validator controls can now be grouped, which allows you to selectively enable validation for some controls" So can some one please let me know whats new with validation controls in ASP.Net2.0 Thanks in advance:

    Rakesh

    ASP.NET csharp asp-net

  • What is the significance of the new ASP.Net directories
    R rockyl

    Hi, I would like know why ASP.Net has introduced the new directories and what is their significance. Are they meant for just logical seperation and to help in easily organising stuff or any other strong reason. And if we consider app_code folder which is meant for code files like .cs, .vb etc. What if I place any codefile outside of this folder.Because when I placed a .cs file in app_code folder and tried to compile it it was not compiling. Can someone let me know what these folders are really for... Thanks:

    Rakesh

    ASP.NET csharp asp-net help question

  • How to run a dll on system reboot
    R rockyl

    Yes. When I run from the command prompt it changes...

    Rakesh

    Windows Forms csharp tutorial question

  • How to run a dll on system reboot
    R rockyl

    Thanks a lot for the Idea. This runonce concept definetly solves my purpose. But I am facing some issue here. I have placed a string value "E:\test\runtoadd.bat". And this batch file consists of a command which runs a registry file which inturn resets a registry key. Then I reboot my machine and observed that the batch file and .reg are running on the reboot but the the thing is the registry key is not getting effected. Can you please let me know what is mistake here. Thanks: Rakesh

    Rakesh

    Windows Forms csharp tutorial question

  • How to run a dll on system reboot
    R rockyl

    Hi, I would like to know one thing. On installation some applications restart the machine and automatically run some dlls on system reboot. But this dll will not run on every reboot. It runs only on this application installation process. Can this be done in C#? Any one please put some light on this... Thanks in advance: Rakesh

    Rakesh

    Windows Forms csharp tutorial question

  • Problem with Treeview
    R rockyl

    I am explicitly selecting the first node tv.SelectedNode = tv.Nodes[0]; and here is my code: private void tv_KeyDown(object sender, KeyEventArgs e) { if (e.KeyValue == 40) //code for down key only { if (currentItemCount > -1 ) { MyItem[currentItemCount].Visible = false; tv.Nodes[currentItemCount].BackColor = Color.White; currentItemCount+= 1; MyItem[currentItemCount].Visible = true; if (tv.SelectedNode != null) { tv.SelectedImageIndex = tv.Nodes[currentItemCount].ImageIndex; } } }

    Rakesh

    Windows Forms help

  • Problem with Treeview
    R rockyl

    HI Ed, Now I want to implement the key down event. Means when user clicks on down arrow I want next item to be diplayed and other wise if Up arrow. For this I am using the tv_KeyDown event and changing the item on the arrow clicked either Up or Down. But the problem is for the first click it is moving two nodes istead of one. And from then working fine. Please let me know your thoughts on this. Thanks:

    Rakesh

    Windows Forms help

  • Problem with Treeview
    R rockyl

    SystemColors.Highlight has solved my purpose. One more thing I am looking for is: I want to have some gap between each node of my tree. I have used indent property for this but there is no effect. Can you tell me way? Thanks in advance:

    Rakesh

    Windows Forms help

  • Problem with Treeview
    R rockyl

    No I am not using this color. Will this solve my purpose?

    Rakesh

    Windows Forms 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