Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: KnotGoblin
  • Content: Threads
  • Order by date
  1. KnotGoblin

    clear netbios cache

    Windows is sending net bios requests for computers that no longer exists on the network. is there a way i can clear the list of netbios names that are being cached. -Jer
  2. KnotGoblin

    validation order and selective validation

    I have a few questions about form validation. First let me describe the page: It contains a datagrid. the datagrid has two columns with data. the datagrid has a footer in which the user can add new records. I am also using "in-grid-editing". I am using validator controls to validate the new...
  3. KnotGoblin

    HTML Validation: javascript

    The only thing that i am having trouble getting to validate in web app is the javascript block that ASP .Net is generating. specifcally, this function: function __doPostBack(eventTarget, eventArgument){} the error is that the script element does not have the type attribute (it only has the...
  4. KnotGoblin

    default doctype

    is there any where in visual studios to change the default doctype for new pages? -Jer
  5. KnotGoblin

    cell padding in an ASP .NET datagrid

    I am try to change the cell padding and font size of a table generated by an ASP .NET datagrid control. I am using the following my css: #dgdJobs TD { font-size: 85%; padding: 1px 2px 1px 2px; } This same thing works for another page. ASP is not changing the table ID. I've checked...
  6. KnotGoblin

    panel control

    the <asp:Panel> control renders as <div> in IE and a <table> in Firefox. This is conflicting with the css. because the ASP is setting the table width=100%. I would like for it to render as a <div> all the time. How can i force it to render as a <div>. I am using the panel control instead of...
  7. KnotGoblin

    div - viewable area vs. containter

    I am trying to move a web application from tables to using more <div>'s. IE: I am having a problem with a <div> inside of a <div>. The nested div (header and footer) does not stretch to the full width of its containing <div>. It seems to be only staying in the viewing window--not it's...
  8. KnotGoblin

    table-less css table

    I've been, let's say, challenged to consider a new paradigm in webpage layout. So I'm trying to create a table without a table element. I'm just trying to get the feel of dealing wil flow and placement. So part of my question is: How do i create the float affect while keeping the div's...
  9. KnotGoblin

    setting and getting cookie

    I am having trouble retreiving a cookie (or setting for that matter). I am using the following to retreive the cookie on page_load Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not Request.Cookies("pref1") Is Nothing Then...
  10. KnotGoblin

    export datagrid to xls

    I am exporting an html formatted xls generated using a datargid. When i export the datagrid using IE it adds this style in the table tag. style="font-size:Smaller;border-collapse:collapse;" However, when it is exported in Firefox no style is applied. How can i keep a style from being added...
  11. KnotGoblin

    dynamic columns are not maintaining state

    I am adding columns to a datagrid at runtime. However, after a post back the dynamically added columns are gone. Note: data is not bound to the grid on the initial page load, so it wouldn't help just putting the procedure to add the columns in the page_load sub (i don't think.)
  12. KnotGoblin

    Datagrid dynamic Columns - change style

    I am addimg columns dynamically to a datgrid and I want to change the item style for the new column i am creating, but i am not sure how do so. Here is an example of how I am adding the new columns. Function newDGcolumn(ByVal name As String, ByVal field As String) As DataGridColumn...

Part and Inventory Search

Back
Top