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
B

blurMember

@blurMember
About
Posts
82
Topics
28
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to insert totalprice value to access database
    B blurMember

    in detail, i have two tables, 1 is products details and the other is order details. so the totalprice n quantity are meant for the order details table. so how should i solve the problem? both the field names are spelled correctly.

    thanks in advance. Much appreciated.

    ASP.NET database tutorial question

  • how to insert totalprice value to access database
    B blurMember

    thanks but there was an error No value given for one or more required parameters. Dim Total As Integer = CInt(Me.txtQty.Text) * CInt(Label1.Text) myCommand.CommandText = "INSERT INTO [Ord] ([Quantity], [TotalPrice]) VALUES ('" & CStr(0) & "','" & CStr(Total) & "')" i change my databse for TotalPrice to number instead of currency.

    thanks in advance. Much appreciated.

    ASP.NET database tutorial question

  • how to insert totalprice value to access database
    B blurMember

    im using vb. To summarize, i have a textbox where user input quantity and a gridview to display the price. i also have a submit button to calculate the totalprice where totalprice = quantity * price. meanwhile im using a label to store the value price. Dim tmp As Double = e.Row.Cells(3).Text.Trim Label1.Text = "$" + (tmp).ToString("0.00") this is the submit coding myCommand.CommandText = "INSERT INTO [Order] ([Quantity], [TotalPrice]) VALUES ('" & CStr(Me.txtQty.Text) & "',__________)" is ________ me.txtQty * Label.Text ?? i need to know what should be the correct way.

    thanks in advance. Much appreciated.

    ASP.NET database tutorial question

  • How do I get the value from a particular cell in the gridview?
    B blurMember

    Hi! I am using vb.net. In this scenario I would like to fetch the price value and display it in the label. Here is my gridview:

    thanks in advance. Much appreciated.

    ASP.NET question csharp

  • Fetching data from gridview to label in another form.
    B blurMember

    :mad: I solved and solved, luckily I can solved. GOOd one over there! :laugh:

    please be careful newbies. haha.

    ASP.NET csharp question

  • Is there a way to do a find search in gridview?
    B blurMember

    Hey Thanks!!!! It will be used in the next years to come.

    thanks in advance. Much appreciated.

    ASP.NET csharp database question

  • Fetching data from gridview to label in another form.
    B blurMember

    Thanks many-many.

    minhpc_bk wrote:

    +DataNavigateUrlFormatString="frm_StudReport.aspx?Stud_Admin={0}&Stud_Name={0}" (the parameters in the url are seperated by the &)

    Though this should be right, DataNavigateUrlFormatString="frm_StudReport.aspx?Stud_Admin={0}&Stud_Name={1}"

    thanks in advance. Much appreciated.

    ASP.NET csharp question

  • Fetching data from gridview to label in another form.
    B blurMember

    I still don't understand.:(( I am using codebehind. And initially i can fetch one data from the gridview to another webform and display it in the label. I want to experiment and fetch two datas from the gridview to another webform and display it in the label. And another webform at the page load, Label1.Text = Request.QueryString["Stud_Admin"]; How can I fetch the Stud_Name as well and display it in Label2.text? thanks in advance. Much appreciated.

    ASP.NET csharp question

  • Is there a way to do a find search in gridview?
    B blurMember

    minhpc_bk wrote:

    And you can do in the common way that many other sites do

    Yes I was thinking to do the same thing. But I was wondering how they do it? Is there any sample link?

    thanks in advance. Much appreciated.

    ASP.NET csharp database question

  • Is there a way to do a find search in gridview?
    B blurMember

    Using C#, I have a gridview where I populate the database from the database. The gridview will display many records. I wish to include a textbox for user to enter the admin number he/she wish to find. And a button for the user to click. The gridview will then filter and show the rows of records of that admin number. How should I work around with it? Should I control the gridview by the textbox or button?

    thanks in advance. Much appreciated.

    ASP.NET csharp database question

  • Fetching data from gridview to label in another form.
    B blurMember

    :-D Thank you. It works.

    minhpc_bk wrote:

    (set this DataNavigateUrlFormatString="frm_StudReport.aspx?Stud_Admin={0}" )

    But I was just wondering what does Stud_Admin={0} means? If I want to pass two values which is Stud_admin and the next column just next to Stud_Admin? What will the longer DataNavigateUrlFormatString = be?

    thanks in advance. Much appreciated.

    ASP.NET csharp question

  • how to do conversion of vs2003 to VS2005
    B blurMember

    :-D thanks for the link. i did a manual conversion though, by copying and paste one by one.

    thanks in advance. Much appreciated.

    ASP.NET csharp asp-net tutorial

  • MaterPages and its contentPage
    B blurMember

    I still cant get it done. Thanks for the suggestion though. To put matter to rest, I think if I apply white at contentpage is the best suitable colour. ;)

    thanks in advance. Much appreciated.

    ASP.NET question

  • Why cant I do this in .Net 2.0? [modified]
    B blurMember

    Sorry maybe I did not explain clearly. The above html tags was from the codebehind. how can I edit the item-template when I would not know where the letter A will appear in the gridview. ------------------------ | |A | | | | | | | | | | A| | | | | | | | | | | | | | | |__|__| A|__|__|__| Some other letter will appear at the blank cells in the gridview. My purpose is to highlight to user, A with red colour so it catch reader eyes to notice the number of As. -- modified at 14:10 Tuesday 22nd August, 2006 thanks in advance. Much appreciated.

    ASP.NET csharp question

  • Anyone who knows how to read error?
    B blurMember

    thanks for the above link.

    thanks in advance. Much appreciated.

    ASP.NET design help tutorial question

  • Anyone who knows how to read error?
    B blurMember

    I was trying to export my gridview to excel. protected void btnExcel_Click1(object sender, EventArgs e) { Response.Clear(); Response.Buffer = true; Response.ContentType = "application/vnd.xls"; Response.Charset = ""; System.IO.StringWriter oStringWriter = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter); dgDisplay.RenderControl(oHtmlTextWriter); Response.Write(oStringWriter.ToString()); Response.End(); } public override void VerifyRenderingInServerForm(Control control) { //base.VerifyRenderingInServerForm(control); } Can someone explain to me what this error means? RegisterForEventValidation can only be called during Render();

    thanks in advance. Much appreciated.

    ASP.NET design help tutorial question

  • Why cant I do this in .Net 2.0? [modified]
    B blurMember

    How can i set htmlencode="False" when im not using any boundcolumns? Is there any way to set A to red colour.

    thanks in advance. Much appreciated.

    ASP.NET csharp question

  • Why cant I do this in .Net 2.0? [modified]
    B blurMember

    In the past, in .Net 1.1 I have a datagrid and I binded my data using datatable, dataset etc. I have set earlier public string strAbsent = "A"; In some column the output will show A in red colour in the datagrid. Now, I am migrating the project to .Net 2.0. I have a gridview and I binded my data using datatable, dataset etc. But it appears that the output A is no longer in red colour but instead it shows exactly the html tags: A thanks in advance. Much appreciated.

    ASP.NET csharp question

  • Why cant I do this in .Net 2.0? [modified]
    B blurMember

    This was fine when I use at .Net 1.1 for the gridview cells, A (in red colour). But the output for .Net 2.0 was A public string strAbsent = "A"; -- modified at 4:13 Monday 21st August, 2006 thanks in advance. Much appreciated.

    ASP.NET csharp question

  • Web Site Administration Tool
    B blurMember

    I am using .Net 2.0. Is is posibble to customise our own create account control? I wish not to include email, secret question and security answer. So basically to create account, user just need to enter username and password and the confirm password.

    thanks in advance. Much appreciated.

    ASP.NET question csharp security
  • Login

  • Don't have an account? Register

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