Search:

Type: Posts; User: ZeBula8

Page 1 of 13 1 2 3 4

Search: Search took 0.12 seconds.

  1. Thread: Split Function

    by ZeBula8
    Replies
    7
    Views
    1,224

    Re: Split Function

    As Danasegarane showed:
    Dim number as Decimal

    If Decimal.TryParse(TheLineArray(4), number) Then
    TheCdTotal += number


    You will need the number variable: (this is the 'out' parameter that...
  2. Re: LinkButton in GridView not properly working with JQuery

    Yes, that works.

    But since no postback, my gridview methods aren't called, (ie: row_created, etc...)


    and thanks, this is a good start...
  3. LinkButton in GridView not properly working with JQuery

    Using VB.NET 2010

    Here is the issue I'm having:

    I have a GridView with LinkButtons in Template fields.
    Under the GridView I have a Panel that is hidden via CSS ( ie: display:none; ).
    I have...
  4. Replies
    1
    Views
    604

    reflection - adding/changing label text

    i have a couple of labels that i do not know the names of at compile time.
    i will only know these names at runtime.

    I would like to change the text of these labels at runtime using reflection.
    ...
  5. Re: Using Comments Inside aspx Pages...

    <%-- your comment here --%>
  6. Replies
    25
    Views
    8,347

    Re: ASPX! PayPal Donation button.

    I've just downloaded the Wilson Webform which allows multiple runat=server forms and posting. I will play around with it and let you know how it goes.
  7. Replies
    25
    Views
    8,347

    Re: ASPX! PayPal Donation button.

    i will work on this tonite hopefully but in the meantime....


    this might help - cross page posting:

    http://msdn.microsoft.com/en-us/library/ms178139(VS.80).aspx


    this one looks promising -...
  8. Replies
    25
    Views
    8,347

    Re: ASPX! PayPal Donation button.

    if you have nested forms then only one form can be runat the server - but
    here is some code you can play with; i got it working for you

    [default.aspx]


    <%@ Page Language="VB"...
  9. Replies
    5
    Views
    2,858

    Re: [2.0] REST webservice

    it's easy with 3.0, even easier with 3.5 ..

    but how to consume REST webservice with asp.net 2.0 ?
  10. Replies
    1
    Views
    703

    memorystream email attachment problem

    using visual studio 2005 - asp.net

    my attachment has corrupt on mail notice.
  11. Re: [RESOLVED] Keep events from replaying on page refresh

    I think you're looking for something like this:

    http://www.codeproject.com/KB/aspnet/Detecting_Refresh.aspx


    i've used this code with great success.
  12. visual studio 2005 - Regions always closed

    whenever i open a new file, class or aspx page, the regions are always closed.

    I don't save it this way to Visual source safe so what's up with that?
  13. Replies
    6
    Views
    4,576

    Re: find control in gridview

    i think it should be like this:

    Dim check As CheckBox = CType(row.cells(0).FindControl("CheckBox1"), CheckBox)
  14. Replies
    30
    Views
    14,413

    Re: Display GridView Header even if there's no rows

    This works for me:

    markup:


    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default10.aspx.vb" Inherits="Default10" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  15. Replies
    23
    Views
    144,331

    Re: Shell to a new browser to open a URL

    This is the code I use in my Login Password Manager (Go to Site Button) and
    it opens a new browser instance for me:





    Dim p As New Process()
    p.StartInfo.FileName =...
  16. Replies
    5
    Views
    941

    Re: [RESOLVED] how to find derived class name

    thanks very much, jmcilhinney,

    that works for me.
  17. Replies
    5
    Views
    941

    [RESOLVED] how to find derived class name

    say i have a class 'MainClass'

    now i have another class, 'Class1' and I inherit from 'MainClass' in this class.

    for example:
    public class Class1
    inherits MainClass
    end class
  18. Replies
    2
    Views
    2,721

    Re: Create Section headings in GridView

    The headers are part of the gridview,

    <asp:GridView ID="GridView1" runat="server" ShowHeader="True" DataSource="yourDataSource" >
    <Columns>
    <asp:BoundField...
  19. Replies
    1
    Views
    535

    Flash in problem

    Just wondering; i put small Flash inside a html table and it doesn't display.

    If I take it out of the table it will display.



    <table>
    <tr>
    <td>
    <OBJECT id="mymovie"
  20. Replies
    7
    Views
    1,724

    Re: [ASP.Net] Insert into gridview

    can we see the markup code you've written?
  21. Re: [RESOLVED] Event wont fire for Dynamic Checkbox!

    As the article says... 'only if you need to persist the viewstate...' of the dynamic controls then the Init event would be needed...

    otherwise, the Load event is just fine, but the code will need...
  22. Replies
    7
    Views
    1,724

    Re: [ASP.Net] Insert into gridview

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

    if not IsPostBack() then
    Dim xconn As New...
  23. Re: [2005] Updating desktop application - advice needed

    some time ago in a company i worked at had similiar situation.

    when we made updates to our application, we always stored it on one
    of our servers.

    Additionally, we had installed a separate...
  24. Re: [02/03] Issue with keeping dynamic controls

    if you're creating dynamic controls you will have to create them in the Page_Init event every time
  25. Re: CSS and MasterPage-style not showing in pages

    i also tried using sentences consisting of five words each, and the same thing happens.
    i have figured out what was happening.. the image width was causing this problem. as soon as i adjusted the...
  26. Re: CSS and MasterPage-style not showing in pages

    I did that but the page still isn't behaving properly.
  27. [resolved] CSS and MasterPage-style not showing in pages

    I have a box template css file that i have a <link href..> in the <head> of the Master Page:


    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <link...
  28. Re: MaintainScrollPositionOnPostback for Panel

    i don't believe it can be done very easily, if at all. i remember having this same problem and found some answers on MS website but the solution was very complex and didn't warrant the effort.
  29. Replies
    1
    Views
    1,603

    how to override onload method

    i'm using a master page in a site.

    in the master codebehind i have the <body> onload event wired to a javascript method.

    on another page, i don't want to use this method for the onload event...
  30. Replies
    1
    Views
    540

    Re: performance of application

    ASPNet Performance

    High performance asp.net
  31. Replies
    4
    Views
    896

    Re: [2005] Show javascript alert box

    should be getElementById - lower d... javascript is case-sensitive...sorry about that
  32. Re: Problem accessing BoundField value if it is set Visible = False

    If i understand your first post, you are trying to retrieve value from hidden column. As for the column you say is still showing, pls post your markup code so we can help.

    for retrieveing hidden...
  33. Re: Problem accessing BoundField value if it is set Visible = False

    what is probably happening is that the value is not being bound to the grid since you set it visible=false.

    try to set the visible = false in the row created event of the gridview after the data...
  34. Replies
    4
    Views
    896

    Re: [2005] Show javascript alert box

    you'll need to build a script and attach it to the onchange event of the dropdownlist, shown here as ddl for example.
    add this to the pre render event and you should see the alert if they pick...
  35. Replies
    1
    Views
    533

    Re: [2005] Listbox Q

    try a gridview instead...
  36. Replies
    3
    Views
    8,064

    Re: ASP.NET Payment Gateway Integration

    no page found for the link -


    you need to remove the end parenthesis from the link..
  37. Re: Modify GridView Control to allow Adding Records.

    it would have been nice if you explained first what we needed on the gridview to run this example.
  38. Replies
    2
    Views
    551

    Re: [2005] job cart/shopping cart

    i'm assuming you have to have a class that holds these books, along with the userid you're using (sessionID perhaps?)
    you can save this class Book to a List that's attached to the sessionID, and...
  39. Replies
    2
    Views
    662

    Re: [2005] Email Link in GridView

    I'm assuming you're going to fill a datatable and bind it to the grid.
    I create a one row datatable to simulate this.





    ' markup
    <%@ Page Language="VB" AutoEventWireup="false"...
  40. get email addresses from exchange with .net

    is there a way retrieve email addresses from exchange server through my asp.net application?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width