Hi all,
My problem is: I want to display only month and year (mm/yyyy) with DatePicker in wpf. Please help me!
View Complete Post
Hi,
I have developed an application using the Master-Detail pattern described in this Matt Berseth article.
The only difference between Matt's article and me is that I am using a FormView object in place of a DetailsView.
Everything works fine except that the formview object, in my case it's inside a user control and I can't figure out how to use the jquery datepicker UI plugin.
I have tried to put the script block for the datepicker either in the aspx page as well as inside the user control but in both cases the calendar does not come up when the related textbox get the focus.
Any suggestion on how to work with the datepicker inside an ascx?
thanks in advance!
I have two divs. I want them to display side by side, on the same row. Using display:inline-block I can do that. But as soon as I position some text in the bottom right corner of div1, the two divs do not have the same vertical position. They are side by side, but the 2nd div starts at the vertical position of the positioned text in the 1st div. Why would it do that? Both Chrome and IE8 render it the same way. ( I am doing the nesting of the divs on the left side so that I can position absolutely within a div and not the page. I can't get text to position in the lower right corner of a div any other way. )
thanks,
<div style="border:2px solid black;"> <div style="display:inline-block;"> <div style="width:10em; height:4em; background:orange;color:White; position:relative;"> <span style="position:absolute;bottom:0px;right:0px;"> login message </span> </div> </div> <div s
Hello,
I'am using dnamic entity with EF4. On a list page of a table, I would like to display a column containing information from a child table of the current element. Sample :
Order List :
Order Data | Required Date | Shipped Date | etc... | ... | Customer Name (foreign key with tostring() method override) | Customer Postal Code (Column that I want to add) |
I don't known how to do that. Is it possible ? Maybe I have to to create my own Metadata proxy that will add dynamicly a column on the MetaColumn list of the table.
Does someone have an easier or better idea ?
Thank you for any help.
My database has a products table that has images stored in a varbinary(MAX) column.
I'm trying to display product information in a repeater and trying to display the images as well by using a GenericHandler class but I can't get the image to show up in my page.
Here is my Handler.ashx class:
Public Class Handler Implements System.Web.IHttpHandler Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest '== Set up the response settings context.Response.ContentType = "image/gif" context.Response.Cache.SetCacheability(HttpCacheability.Public) context.Response.BufferOutput = False Dim id As Integer = -1 Dim stream As Stream = Nothing If Not String.IsNullOrEmpty(context.Request.QueryString("id")) Then id = context.Request.QueryString("id") stream = GetImage(id) End If Const buffersize As Integer = 1024 * 16 Dim buffer(buffersize) As Byte 'byte[] buffer = new byte[buffersize]; Dim count As Integer = stream.Read(buffer, 0, buffersize) While count > 0 context.Response.OutputStream.Write(buffer, 0, count) count = stream.Read(buffer, 0, buffersize) End While En
Dim
wi As System.Security.Principal.WindowsIdentity = _System.Security.Principal.WindowsIdentity.GetCurrent()
Dim a As String() = HttpContext.Current.User.
Can anyone tell me the best way of storing Japanese characters through ASP.NET.I have to put characters into a asp:textbox on one page, which saves it to an Access DB.On a second page I want to display the content in a asp:label.
Should I store the characters directly to the database or should they be encoded, andhow do I encode the characters?
In my web.config i have:
<globalization fileEncoding="ISO-2022-JP" requestEncoding="ISO-2022-JP" responseEncoding="ISO-2022-JP" culture="ja-JP" uiCulture="ja-JP" />
On the display page I have:
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=shift_jis">
Hello techies...
I am new to this sql reporting service. But anyhow by surfing I am able to bind the report but i was stuck in image display.
Anyways, i also managed that. But the real problem is whenever i was keeping a image control in rdlc report i was having session prob. If i remove the image control then as usual report works fine.
Please suggest me some solution.... either for session problem or for image display. I am keeping the image name in database but for binding the rdlc report i am using a store procedure which return the path (static) concating with the image name(kept in database).
Hope to find a solution .....
I have a report using an image control that needs to display an image inside subfolder "Images\InstitutionLogos\".
On properties of image control i have the following properties set:
MIMEType= "image/png"
Source = Database
Value ="\Images\InstitutionLogos\" +Fields!InstitutionID.Value+".png"
Inside subfolder "Images\InstitutionLogos\" each image is named with a number which represents Fields!InstitutionID.,(ex, 1.png, 2.png, 10.png)
However, when i run the report the image just displays an X, what am i missing?
Hi! I want to display a crystal report in my vb.net application. Suppose I have tables named student details, student marks, student address, etc... Now if I want to display all these details (fields of all tables) in one crystal report (with page breaks if necessary) then how will I achieve it. I will be providing a combo box in my application that contains list of student names. How can I link this combo box with the cystal report to dynamically display report for different student on selected index change of combo box? Help me friends. An example would be appreciable.
I am using .net version 1.1 and excel 2003 to display data.I need to display data in 2007 .Can anyone suggest the reference to be added ,connection string change and what should be imported.
Sorry for a basic post here; I am very new to VB!
I am currently building a search page, which includes a textbox and two drop-down lists, a search button, and a datagrid. If results are found and displayed, I would like a label to display:
(e.g.) "24 results found for 'blue sky clouds' "
...where the integer represents the results count, and the keywords and/or drop-down list selections are included in the string.
If no results are found I would like the label to display:
(e.g.) "No results were found that match your selection. Please try again"
I would also like the label to be invisible until a search occurs.
Thanks in advance!
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend