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

Rasma Raj

@Rasma Raj
About
Posts
17
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • where can i download iTextSharp.dll (version 4.0.6.0
    R Rasma Raj

    hi ... you can download iTextSharp.dll from http://sourceforge.net/projects/itextsharp/[^] Thank You, Rasma

    Hardware & Devices question announcement

  • Getting 550 acess denied error
    R Rasma Raj

    Hi, When I am trying to delete file from Ftp getting 550 access denied error. This error is showing only when I am deleting only two files .Other files I can delete easily. I hope this is not due to the permission settings. Can anyone help me to solve this? Is there any software for deleting such kind of files. Bunch of Thanks in advance Rasma

    IT & Infrastructure help question

  • Error throwing when using Mozilla firefox browser.
    R Rasma Raj

    Hi, When i try to selecting an item in a dropdownlist getting the following error. "Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation." This error only showing when i am using the mozilla firefox browser. Can anyone help me to solve this problem? Bunch of thanks in Advance. Rasma www.rasma.cjb.in

    Web Development help sysadmin security question workspace

  • Cannot instantiate non-existent class: database in /includes/joomla.php
    R Rasma Raj

    Hi, When i try to open the joomla website in web getting the error 'Cannot instantiate non-existent class: database in /includes/joomla.php ' error showing the line $database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix ); the database connections that i set in the configuration file is correct. can anyone help me to solve this problem? Bunch of thanks in advance Rasma www.rasma.cjb.in

    Web Development help php database question workspace

  • How can i solve 400 Bad Request Error
    R Rasma Raj

    thankyou..

    Web Development help sysadmin question

  • How can i solve 400 Bad Request Error
    R Rasma Raj

    Thankyou Navaneeth but it didn't met my requirement

    Web Development help sysadmin question

  • How can i solve 400 Bad Request Error
    R Rasma Raj

    Hi, When i try to open the website which is developed in joomla getting an error 400 bad server request.Can anyone help me to solve the problem. Thanks in advance, Rasma. www.rasma.cjb.in

    Web Development help sysadmin question

  • How can i search through websites using particular keywords?
    R Rasma Raj

    web application

    Web Development question algorithms

  • How can i search through websites using particular keywords?
    R Rasma Raj

    hi, I want to create a software,that is for searching through websites using particular keywords.can anyone give me an idea for creating this software? Thanks in Advance Rasma

    Web Development question algorithms

  • Can you give me an idea?
    R Rasma Raj

    hi I want to create a website for seaching some details through websites using some particular keywords.Can you give me an idea for creating this. Thanks in advance Rasma

    C# question

  • Problems faced in differend resolution.
    R Rasma Raj

    Thank You guys for your response. I would like give the actual idea about our project. The core part of this project is to provide the customer a tool by which the customer can select a design from a collection. From there the application provides the tools for making the business cards according to their idea. i. e they can drag any field for eg: the name, address, or the phone no. Then they can change the font the colour .. . We were succeed in creating these all . We are storing the X,Y co-ordinates of each field and we have to restore all these fields for that customer to view later. At that time on the normal screeen resolution the restoring is successfully happened. But if we changed our screen resolution then the background image exists without any problem but the fields are not keeping the saved position. Here we are of no idea that how we have to set this for every screen resolutiong available in any system. Here the width and height of the Background image i.e the business card is set to a width of 300 px and height of 200 px. We have used divs for each data field in this business card. We expect a good solution from all of you. Thanks and regards Rasma

    ASP.NET help html business

  • Problems faced in differend resolution.
    R Rasma Raj

    Hi, Me and my friends are developing a software.The software is for designing and customising business cards. In this software user can rearrange the name and address in it.that means user can drag each control and place it in their own decision.In it we cannot restore the whole one with keeping position.in one resolution it is working perfectly.but changing the resolution a computer.it is not keeping the position. Could you help me to solve this problem. thanks and regards. Rasma www.rasma.dom.ir[^]

    ASP.NET help html business

  • GridView, Multiple Images in one cell
    R Rasma Raj

    Hi You can add more than one image control in your image template column and put image url what you want to display. Thanks and Regards Rasma :) www.rasma.dom.ir

    ASP.NET question

  • border in gridview row is not visible in IE
    R Rasma Raj

    Set the gridview property bordercolor and border width. Thnx Rasma Raj

    ASP.NET css question

  • Select entire row details on click of button of that row inside a GridView
    R Rasma Raj

    To use RowDataBound to find Id in each row: In code behind: protected void Page_Load(object sender, EventArgs e) { //Accepting the Id of a clicked row. string id = Convert.ToString(Request.QueryString["id"]); } protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { string id = e.Row.Cells[0].Text.ToString(); e.Row.Attributes["onclick"] = "window.navigate('samewebpage.aspx?id=" + id + ")"; } } you can access id from page load, reading the entire data of corresponding id using datatable or datareader and display the contents in a textbox or label. Thankyou, Rasma

    Web Development csharp question asp-net database

  • Select entire row details on click of button of that row inside a GridView
    R Rasma Raj

    You can edit a particular datagrid row using EditCommand event of the datagrid. i attach code below: private void Edit_DataGrid(object source,System.Web.UI.WebControls.DataGridCommandEventArgs e) { // We use CommandEventArgs e to get the row which is being clicked // This also changes the DataGrid labels into Textboxes so user can edit them myDataGrid.EditItemIndex = e.Item.ItemIndex; // Always bind the data so the datagrid can be displayed. } thankyou Rasma

    Web Development csharp question asp-net database

  • How can i place a picture without affecting the screen resolution of a client machine
    R Rasma Raj

    Hi. I want to display some picture basced on x and y co-odinates(screen resolution) on the client screen.I have no idea for how to solve this problem.Please help me. ThankYou, Rasma.

    Web Development help tutorial 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