Search:

Type: Posts; User: kayos

Page 1 of 8 1 2 3 4

Search: Search took 0.15 seconds.

  1. Re: Is possible to use RictTextBoxControls in Asp.Net

    if you're looking for a good RTE, i've always liked using this one:
    http://www.fckeditor.net/
  2. Replies
    4
    Views
    32,099

    Re: Text alignment in header of GridView

    what i like to do is wrap my gridview in a div tag and then use the css selectors to get to the table elements.


    <style type="text/css">
    .gvclass table th {text-align:left;}
    </style>

    <div...
  3. Replies
    7
    Views
    700

    Re: [2005] publish question

    When you publish an ASP.NET 2.0 app, you put all of your *.aspx and code files into the web directory on the FTP server. ASP.NET 2.0 on the webserver will compile your project using the Just In Time...
  4. Replies
    2
    Views
    411

    Re: CSS, a little off topic...

    try nesting the selector th with the table tag and see what happens, like so:

    table th {/*my style code*/}
  5. Replies
    2
    Views
    805

    Re: How to create Captcha using VB Script

    http://www.tipstricks.org/
  6. Replies
    4
    Views
    671

    Re: [2005] Whats the difference,..

    Also, a Literal is rendered AS IS. For instance if you put your text into a Label control, then when it is rendered to the browser it is in a <span> tag. All the other controls also have accompanying...
  7. Replies
    6
    Views
    718

    Re: [2005] Gridview Datasource

    hmmm... i've never tried anything like this, but i do have a suggestion.

    instead of:
    GridView1.DataSource = AccessDataSourceFDES1
    GridView1.DataBind()

    try this:
    GridView1.DataSourceID =...
  8. Replies
    2
    Views
    1,000

    Re: Include Virtual (not working)

    try using the other slashes and start with a root "/" like so:

    <!-- #include virtual="/includes/top.shtml" -->
  9. Replies
    4
    Views
    559

    Re: [2005] Showing image from database

    try this article:
    http://aspnet.4guysfromrolla.com/articles/120606-1.aspx
  10. Replies
    4
    Views
    728

    Re: todaysDate - 1 day

    'get todays date
    Dim todaysDate As Date() = Date.Today
    'get yesterdays date
    Dim yesterdaysDate As Date() = Date.Today.AddDays(-1)
  11. Re: Imports statement in single File ASPX

    put this beneath your <%@Page%> directive:
    <%@ Import Namespace="System.Data.SqlClient" %>

    that is how you do imports on aspx files w/ no codebehind
  12. Re: how can i set MaxLength of Textbox using Javascript

    you dont have to use javascript at all... just use the attribute in the textbox like so:

    <textbox name="myTextbox" id="myTextbox" maxlength="50" />
  13. Replies
    4
    Views
    6,905

    Re: what does TableAdapter.Update return exactly

    1/ TableAdapter.Update return when it s successful
    Like the above post says it returns the # of rows affected. In my BLL I usually use an int to hold my rows affected and set it equal to the update...
  14. Re: [2005] URL Rewriting with RegEx

    you should check this blog entry out:

    http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx
  15. Thread: Validator help

    by kayos
    Replies
    2
    Views
    453

    Re: Validator help

    also, if you put a <asp:ValidationSummary> on the page then it should also be able to stop it with Javascript on the client side... but good practice is to also do what timeshifter has pointed out...
  16. Replies
    2
    Views
    580

    Re: [2005] Error in my codes - 3 tier

    it may just be me, but the data layer function "checkamount" doesn't have a "Return" statement in it anywhere... so it is a function that will always get "Nothing" back. the first step would be to...
  17. Replies
    5
    Views
    901

    Re: File Upload Progression Bar

    well one thing i can see immediately is the sub GetCallbackResult isn't returning anything in your code, and retrunStr should be a private variable modified by RaiseCallbackEvent:



    Imports...
  18. Replies
    4
    Views
    497

    Re: IF 'after specific day of the month'

    have you tried:


    If Day(Date()) > 24 Then
    'Do something here
    End If
  19. Re: Should I use gridview or datalist ? Ur opinion

    i would go with the repeater as well.
  20. Replies
    2
    Views
    487

    Re: [2005] Delete uploaded files

    If you are doing VB then you could also try using the "My" namespace like so:

    My.Computer.FileSystem.DeleteFile()
  21. Replies
    1
    Views
    439

    Re: SQL Server Conection String

    http://connectionstrings.com/?carrier=sqlserver
  22. Re: [RESOLVED] [2005] ASP.NET AJAX Control Toolkit themes problem

    how did you resolve this? i'd like to know...

    thanks
  23. Re: How to convert .aspx file to .html file in a output

    try this link:
    http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx
  24. Replies
    12
    Views
    1,104

    Re: Advanced .Net Tutorials/Articles/Samples ?

    http://www.asp.net/

    click on the "learn" tab
  25. Replies
    2
    Views
    3,220

    Re: Handle apostrophe in asp.net/sql

    if you are using 2005 it will be like this:

    "Select whatever from Wherever where w_id=@w_id"

    Then supply the values to your command.

    cmd.Parameters.AddWithValue("@w_id","aldsfkjlsfj");
  26. Replies
    2
    Views
    626

    Re: AjaxControlToolkit Updated Release

    i figured it was worth pointing out since i've seen some people posting about problems w/ the controls in it! :)
  27. Replies
    2
    Views
    626

    AjaxControlToolkit Updated Release

    For those who use the AjaxControlToolkit, an updated version has been released. You can find more about it in this blog post, including links:
    ...
  28. Thread: default button

    by kayos
    Replies
    7
    Views
    668

    Re: default button

    if you are using 2005 you can also set it right in your form tag like so:

    <form id="form1" runat="server" DefaultButton="SearchButton">
  29. Replies
    3
    Views
    618

    Re: [2005] Application_End never runs

    you should keep in mind the scope of the variables you are killing.

    the Application_OnEnd event only runs when the web is shut down for whatever reason.

    the Session_OnEnd however, runs each...
  30. Replies
    2
    Views
    1,124

    Re: save the data sort in ReorderList

    check out this article:
    http://joeon.net/archive/2007/05/25/Getting-ReorderList-Item-Values.aspx
  31. Replies
    2
    Views
    1,124

    Re: save the data sort in ReorderList

    doesn't it have some sort of "PostBackOnReorder" property you could set to capture it?
  32. Replies
    3
    Views
    1,163

    Re: 3 tier architecture in ASP.NET

    try doing some reading here:

    http://asp.net/learn/dataaccess/default.aspx?tabid=63

    in the "Introduction" section he starts getting into his DAL and BLL of the 3-tier architecture.
  33. Replies
    2
    Views
    538

    Re: [2005] Bullet List Hlp Plz

    look into CSS -> http://www.w3schools.com/css/

    pasting the code below into your head tag will do it for now:


    <style>
    a:link{text-decoration:none}
    a:visited{text-decoration:none}...
  34. Re: [2005] Comparison of Asp.net using c# and asp.net using vb

    +1 to that!
  35. Re: [2005] Need to Learn ASP.NET Fast... Any good tutorials?

    try here, it is where I did most of my learning of it:

    http://www.asp.net/learn/default.aspx?tabid=63
  36. Replies
    7
    Views
    608

    Re: [2005] Exception Handling

    i usually do something like this:


    'For VB
    Try
    'some code that could error
    Catch (ex As Exception)
    'This is where ex would be your exception, you can get
    'the error message...
  37. Replies
    6
    Views
    599

    Re: [2005] Which is Best

    really, it is all a matter of personal preference. i keep my code separate because i think it is cleaner.
  38. Replies
    2
    Views
    582

    Re: Need help figuring this out

    try pulling the tilde out (~)
  39. Replies
    11
    Views
    980

    Re: [RESOLVED] [2005] Gridview and link button

    no, unfortunately this is a single field solution.

    if you want multifield then you will have to use something like what mendhak was talking about.
  40. Replies
    10
    Views
    941

    Re: ASP.NET 2.0 AJAX Extensions 1.0

    That would be a good idea..

    Here is an example of a work around I had to use for the Toolkit:

    I wanted that calendar, but without a textbox to enter the date into (just have the calendar pop...
Results 1 to 40 of 307
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width