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

Rameez Raja

@Rameez Raja
About
Posts
173
Topics
115
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Credit Card Processing using Paypal
    R Rameez Raja

    Hi all, I need to integrate the Paypal for online credit Card processing . I dont have pervious experience of integrating paypal . can any body share the ideas Regards,

    ASP.NET

  • Compare two Template Fields of Gridview
    R Rameez Raja

    Hi all, May we compare the two template fields of Gridview with Compare Validator like below

         /asp:TextBox>
    

    I want to validate the Receive Item with Qty using Compare Validator that User can not insert value greater than qty in Receive Item. Any Idea Regards,

    ASP.NET

  • Gridview rendering Issue
    R Rameez Raja

    Hi all i have binded data with gridview in presention point view it is working but while inserting the data to DB and iam traversing the girdview iam getting the index missing . please guide me where iam doing wrong DataTable dataTable = new DataTable(); dataTable.Columns.Add(new DataColumn("StudentID", Type.GetType("System.String"))); dataTable.Columns.Add(new DataColumn("StudentName", Type.GetType"System.String"))); dataTable.Columns.Add(new DataColumn("MajorName", Type.GetType("System.String"))); dataTable.Columns.Add(new DataColumn("StudenMarks", Type.GetType("System.Int16"))); dataTable.Rows.Add(new string[] { "1","Student1","English"}); dataTable.Rows.Add(new string[] {"2", "Student2","English"}); dataTable.Rows.Add(new string[] { "3","Student3","Hindi"}); dataTable.Rows.Add(new string[] { "4", "Student4","Hindi"}); dataTable.Rows.Add(new string[] { "5", "Student4","Hindi"}); GridView1.DataSource = dataTable; GridView1.DataBind(); AND my gridview looks like the below And on Row Data bound event i have the below code stri

    ASP.NET database help tutorial

  • Calculate and display a progressive balance
    R Rameez Raja

    Thanks for reply Actually i have the below Table with multiple columns

    Declare @Table Table
    (
    EmployeeName Varchar(50),joiningDate DateTime, Amount int,Balance int
    )
    insert into @Table
    Select Abc,07/03/2010,6000,0 UNION ALL
    Select xyz, 07/03/2011,1500,0 UNION ALL
    Select Rameez, 07/03/2011,2000,0 UNION All
    Select Abhijit, 07/03/2011,1000,0 UNION ALL

    I have the above table and have to calculate the progessive Balance for each row is it possible using subquery???? Regards

    Database database question

  • Validating Email without the use of regular Expression ?
    R Rameez Raja

    HI all, What will be way to validate the email Address without using the regular Expression . Just give me the Idea i will do my self Regards Rameez

    ASP.NET regex question

  • Calculate and display a progressive balance
    R Rameez Raja

    Hi all, I have table and inside table there are two columns named Amount and Balance i want to calculate the balanace as Professive like below Balance 6000 Amount Balance 1500 4500 2000 2500 1000 1500 500 1000 Initially iam getting the balance from database table than have to perform the Progressive calculation . May i have to use COALESCE function ?? Or how i can calculate the ProgressiveBalance like above any hint. Any Idea ? Best Regards Rameez

    Database database question

  • paypal
    R Rameez Raja

    Hi, Check this out http://www.asp.net/downloads/starter-kits/paypal-ecommerce/ OR You need a paypal account and you have to sign up for a business account so you can accept credit card payments. There are some clever ways to integrate it but I have illustrated one of the most basic ways here: http://runtingsproper.blogspot.com/2009/07/simple-paypal-button.html That would get you going with a purchasable item. You will have to dig deeper if you want to add items to a cart and then purchase them all at once. There is a dedicated developer network called the PayPal Developer Network. https://www.paypal.com/developer http://developer.paypal-portal.com/pdn/ And many many tutorials out there: http://www.google.co.uk/search?q=asp.net+paypal Hope it helps Regards

    ASP.NET csharp asp-net com help tutorial

  • Update Panel Issue
    R Rameez Raja

    Hi all, I have the Textbox inside Update Panel like below <td colspan="4" style="border: none;"> <asp:UpdatePanel ID="upnl_PeriodYears" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:TextBox ID="txtPeriodFromDate" runat="server" Width="90px" ValidationGroup="LandAcqForm" Text='<%#(((System.Data.DataRowView)Container.DataItem).DataView.Table.Columns.Contains("DBFromDate")? Eval("DBFromDate") : "FromDate") %>'></asp:TextBox> But iam getting the below error CS1061: 'System.Web.UI.Control' does not contain a definition for 'DataItem' and no extension method 'DataItem' accepting a first argument of type 'System.Web.UI.Control' could be found (are you missing a using directive or an assembly reference?) How i assign the value to Textbox which is inside Update Panel??? Regards

    ASP.NET help design sysadmin docker question

  • How i get start with the Chat Application like gmail or facebook Chat Style ???
    R Rameez Raja

    HI all, Iam working on chat application Module how i develop the chat application like gmail or Facebook style???? Suggest me good articles where i can learn and will get start..... Regards

    ASP.NET question lounge

  • thread hit count and views count help is needed ????
    R Rameez Raja

    Hi all, Iam working on Forum Application and every thing is ok but iam stuck on below that how i set the thread hit counter for Total Views and Total replies of the particular thread. Any Idea how i tackle this issue. Hope Hear from you Best Regards

    ASP.NET help question

  • Unable To Export Sub-report Data In Excel Format????
    R Rameez Raja

    Thanks for reply, ok iam placing the sub report into list control instead of Table then it works am i right? but in sub report Data is populating inside Matrix control then is it ok ?????/? Regards

    ASP.NET question

  • Unable To Export Sub-report Data In Excel Format????
    R Rameez Raja

    Hi all, I am using 'Report Viewer Control ' in my project. I am using sub-reports in many cases. Whenever I export such reports containing sub-reports to 'Excel' format which is the major client requirement in our project, the exported excel file shows 'Subreports within table/matrix cells are ignored.' Can anybody tell me the solution for this? If not possible in reporting service then is there any other way to get data in excel format? Thanks.

    ASP.NET question

  • Simple Example of using Enum Type why we use them?
    R Rameez Raja

    Hi all, how we can use the enum any simple Example of using the enum? enum is data type or object? Hope hear from you Best Regards

    C# tutorial question

  • How i write Java script Function for validaing inner Gridview Checkbox
    R Rameez Raja

    Thanks for the reply, How i get Id of inner gridview and checkbox? in java script Best Regards

    ASP.NET java tools

  • Share me the ideas how i apprach the below
    R Rameez Raja

    Iam really sorry for doubling of the post i dont know how i post the double enteries sorry for that iam getting applogize for it. Thanks for the response Regards

    ASP.NET wpf wcf help

  • Share me the ideas how i apprach the below
    R Rameez Raja

    Hi all Iam stuck on the below task I have Gridview inside gridview in outer gridview i binded the categores which are almost to six and on ROw Data bount event of Outer Gridview iam binding the inner gridview with items Names related to category by passing the category Id. like Category People -- People one -- People two -- People three Category Student -- Student one -- Studnet two Now how i validate that if i checked the category People checkbox chekced then its related items will be unchecked how i make independat to each category and its items Hope i will hear good comments Share me the ideas how i approach this Best Regards Rameez

    ASP.NET wpf wcf help

  • Iam stuck in the below task of validation
    R Rameez Raja

    Hi all Iam stuck on the below task I have Gridview inside gridview in outer gridview i binded the categores which are almost to six and on ROw Data bount event of Outer Gridview iam binding the inner gridview with items Names related to category by passing the category Id. like Category People -- People one -- People two -- People three Category Student -- Student one -- Studnet two Now how i validate that if i checked the category People checkbox chekced then its related items will be unchecked how i make independat to each category and its items Hope i will hear good comments Share me the ideas how i approach this Best Regards Rameez

    ASP.NET wpf wcf help

  • How i write Java script Function for validaing inner Gridview Checkbox
    R Rameez Raja

    Thanks for reply, I Checked the link but it is related with selection of all checkboxes but i have to make validation if outer Gridview Checkbox checked then all inner Gridview Check box will be checked == false. Do me this favor how i approach this. Best Regards,

    ASP.NET java tools

  • How i write Java script Function for validaing inner Gridview Checkbox
    R Rameez Raja

    Hi all, How i write a java script function which validates if Outer Gridview Checkbox is checked then inner grdiview Checkboxes not checked if any of the inner Gridview Checkbox checked then Outer Gridview Checkbox will not Checked . Best Regards, Rameez

    ASP.NET java tools

  • Gridview inside Gridview items to be inserted into DB Table
    R Rameez Raja

    Hi all, I have Outer Gridview and Inner Gridview , Inner Gridview Contains the Checkboxes now if Outer Gridview Check box Checked then Inner Gridview Checked enables false else vice versa. Now my Probelm is that how i access the inner Gridview items and insert into database if outer Gridview checkbox not checked Share me the Ideas Best Regards, Thanks in advance

    ASP.NET database
  • Login

  • Don't have an account? Register

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