I have set a fix height of DIV and set its overflow-y:scroll but the problem is that if i have got data less than its height event though its showing scroll bar (disabled). how can i hide it... i mean give me solution so that the scroll bar will only show when data in that DIV is crossing height of DIV..
My code :
<div style="overflow-y:scroll; height:290px">
a data grid is here
</div>
I have a an asp.net label control on my page.I have set the style to overflow: auto.
What i would like to know, is when there is a lot of text in my label and the vertical scroll bar is showing, is there away i can scroll to the end of the label using javascript?I would like the user to always see the bottom section of the label.
I am developing a website in asp.net mvc using Entity Framework. I have created some POCO (Plan old class objects) to represent the database entities.These POCO classes defines some entities with datetime type.
Now I have a view which contains a telerik datepicker. This view inherits the model which contains a nullable datetime object say searchDate.
When I fire a query to compain these searchDate with dates stored in database its throwing following error
"SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM."
following is the linq query i am using
[Code]....
The date format stored in database is "2011-01-31 00:00:00.000"
and the format comes from UI is "03-03-2011 00:00:00".
I am using SQL Server 2008 R2 and .net 4.0 framework.
we are getting a stack overflow in production ~ 2-4 times / dayWe cannot reproduce this is in dev environment, nad given this is a web app with probably ~100 concurrent users at any one time, I'm struggling to work out how best to track this down.Is there anyway to get any more info from event viewer - happy to install some form of listener tool - even if i can just get teh thread identity (set to the current user) that'll help - although the dll + class / function woudl be great!
On this site if you do too many clicks or post comments too fast or something like that you get redirected to the "are you a human" screen. Does anybody know how to do something similar?
I have made a solution with ResizableControlExtender in the Ajax control toolkit. It is a solution with a treeview on the left side of the screen and a content panel on the right side. Depending on what level in the treeview the user clicks at different content is shown in the right panel. What I want to do is to make it possible for the user to resize the width of the treeview. I have put the treeview in a panel and sets the target for the ResizableControlExtender to this panel. I have set the overflow style to auto. This works fine in all browsers except IE6. Unfortunately IE6 is an important browser for this solution. In IE6 the text of the treenodes is not cut when it is wider than the treeview width so it flows over the borders.The overflow works if I set a fixed width in the styleTreeView class but that makes it impossible to resize. I've tried to change the overflow setting in a lot of ways but nothing is working.
I have used a MaintainScrollPositionOnPostBack = true function in 2.0 but is giving a stack overflow at line 0 error. What is the fix to this. I understand that it is a bug in IE.
I have a MS SQL Srver 2005 Database, that has a table with a DatTime column. The DateTime column is of smalldatetime type. The date and time is auto generated by the DB using getdate() function. This is because its a LOG recording table, so logs are just inserted and date-time is generated by the db.
When creating a log and saving into the DB through Entity Framework, using LINQ query, it causes an error while saving saying:
"SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM."
upon investigating using breakpoints i have noticed, when Entity Framework tries to save the Log object, the date set by Entity Framework is set to:
01/01/0001 00:00:00
I guess this is why error is coming up. Is there any way to resolve this?
I do not understand how this problem happens, and I need help. The code below is very simple. It collects data entered into controls; instantiates a class; then sends the data to a class method for processing. No resulting value is returned to this code.You can see that there are no areithmetic operations performed on the data, but I sometimes get the error "arithmetic operation resulted in an overflow" right here on the last line cRating.SetRating(etc...).
[Code]....
The class method uses the player id values (single) for the two players (iHPlayerID and iAPlayerID) to find their rating values. Calculations are made and the database is updated.Observation 1:I don't want to discuss the class method too much because, and this is the odd part,the code behind breaks before reaching the class. I have inserted a breakpoint at the start of the class method and ran the code. The error occurrs and the class codenever appears.
Observation 2:I mentioned that the class uses the players' ID values to look-up their rating from the database and round that value (single) to an integer. The code works just fine if the integer values of the players and not the same. The code fails and gives the error every time if the integer values are the same. How can this happen if the class code never executes?
I'm new to ASP.net 3.5 and I'm trying to create a FormView based on Linq to SQL. My underlying table has several date fields that are optional and typically are not set. When I try to insert or update records, I get the following message.
SqlTypeException: SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM
I got the same message when using the SQLDataSource with this data, but I was able to create functions that tested the value of the datefield against the datetime.minvalue and if it was the minvalue, replace it with null.I can't figure out where to put the functions and how to reference the value of the date field. below is what I have
-- CURRENT FUNCTION FOR LINQ TO SQL
Public Shared Function MakeDateField(ByVal pasDate As String) As Nullable(Of SqlDateTime) If IsDate(pasDate) Then Try [code].....
How can I submit null dates when using Linq to SQL automatic updates and inserts?
I have my body height to 100%. I then have a containers height set to 100%. If the window is smaller than the content of my container a vertical scroll bar is added but when I scroll down my container div is no longer 100%.
Please see the attached image.
I then add overflow:auto which sort of works but because it puts a scroll bar inside my container and not the window and my two images are the width of the container they no longer fit next to each other. grrrrr.com
I need my main container to extend with its content with out scroll bars because if the vertical scroll bar shows there is not enough to have my two images side by side.
using sql server 2005. I am working with an existing database field and there is a field where the string in this format: YYYYMMDD, for example 05/16/2002 is displayed as:
<example> 20020516 </example>
anyways I am trying to convert that string to a date like so:
[Code]....
however when I try to do this I am getting the following error <ERROR>
Arithmetic overflow error converting expression to data type datetime. </ERROR>
does anyone know a good solution for this? I just want to convert the string to datetime so I can use the value in my WHERE clause.