How to have mulitple rows in header template of datagrid, or datalist or repeater.I want header like following..........
** | col2col3mixed |
col1 |---------------|col4
| col2 | col3 |**
How to do this?
How to have mulitple rows in header template of datagrid, or datalist or repeater.I want header like following..........
** | col2col3mixed |
col1 |---------------|col4
| col2 | col3 |**
How to do this?
[Message Deleted]
Hi i want to have time in arraylist like following 9:45 AM 10:00 AM 10:15 AM 10:30 AM .... so basically 15 mins are added to previous item.. How to do this? Pls reply ASAP.
hello, I have put System.windows.controls Combobox in silverlight usercontrol. which i have hosted in default.aspx. Now i want to call javascript on button click -- to change selected index of combobox ..... I am using .net 3.5 sp1 with vs 2008 so how to change selected index of combobox from javascript code.. Please help asap.
Hi, I have dynamic string[] i want to have query which can work like "where in" clause of sql i tried with string[].contains(colvalue) but didn't work --------------------------- string[] my = containQuery1.ToArray();//my[0]="january", my[1] = "february" and so on.. DataServiceQuery<Classname> query = (DataServiceQuery<Classname>) (from c in svcContext.Classname where my.Contains(c.MONTH) && c.YEAR == strYear select c); query.BeginExecute(fillData, query);
Hi i have an html report in asp.net I want to export html report to word .. I am able to do that by following code ..but i want to have predefined header and footer in exported word document... so how to set header/footer of ms-word document from asp.net code. ------------------------------------------CODE----------- string strHTMLContent = reader.ReadToEnd(); strHTMLContent = strHTMLContent.Replace("#Education#", "BE"); strHTMLContent = strHTMLContent.Replace("#Position#", "Software Engineer"); lblmsg.Text = strHTMLContent; HttpContext.Current.Response.Clear(); HttpContext.Current.Response.Charset = ""; HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8; HttpContext.Current.Response.ContentType = "application/ms-word"; string strFileName = "new1" + ".doc"; HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + strFileName); HttpContext.Current.Response.Write(strHTMLContent); HttpContext.Current.Response.End(); HttpContext.Current.Response.Flush();
hi Lst's we have 2 queries to get data in LInq to sql + asp.net 3.5 //------deferred loading---//
var result = from user in DBContext.Users
select user;
foreach (User u in result)
{
}
//------immediate loading---//
List result = (from user in DBContext.Users
select user).ToList();
I want to know -- accrding to defereed loading the queries should be executed only when it's requested in for each loop.and in immediate load we get all data at once. but doesn't query executes on var result =..stmnt.?
Hi, With LINQ the queries are executed on server via server side code so doesn't it create extra load on server for query. Is it true that we can run db queries or sp's gives more performance over LINQ queries? Please justify whether it's true or not?
Hi, When to use patterns and practices? I think it's used for architecture like 3 tier... How to start using it? I read on Microsoft that it's recommended arch. for .net projects but how to start using it?
Is extension method = static method returning strongly typed variables or collections? i read one entry about it saying -- "this" keyword as a static method param tells The compiler that this particular Extension Method should be added to objects of type default .net class. SO do we need to add "this" keyword for creating extended method or every static method in static class can be called extension method?
Hi, * What is difference between JSON and XML? Which is better? * How to call WCF Service using JQuery(like we call Web Service from JavaScript)
Can anyone tell me What is alternate for following JavaScript with asp.net functions using JQuery. pls give example.. -> Jquery function with parameters -> window.open -> ScriptManager.StartUpScript -> Make JQuery function and call it from code behind. Also how can i get intellisense support for JQuery in vs 2008 without upgrading to sp1. I donwloaded one hotfix Hotfix for Microsoft Visual Studio 2008 – KB946581 ..but it doesnt help.
which method is more appropriate for use with XML? -> xmlDocument -> xPathDocumrnt -> Datatset
modified on Thursday, February 12, 2009 5:53 AM
hi, I am displaying images thumbnail in datalist. Now I want to display clicked image with original size in another image tag contained in another div(which is invisible initially but can be visible on image click in datalist) ----------------------------
---------- here in image id "imageOriginalSize" i wanna display original sized image.
for asp.net 2.0 What is difference between following methods for selecting XML data. which one is better interms of performace. 1) Dataset.select 2) dataview 3) xmlDocument.SelectNodes 4) xmlNavigator.select
modified on Monday, January 19, 2009 2:41 AM
I am using following function to print iframe . but it doent work with Firefox and works in IE..why dont work in mozilla fireox 3.0..pls gv alternate.. function Print() { var iframeE3 =parent.document.frames['pageframe1'].document.frames[2]; var iframeE4 =iframeE3.document.frames.length; if (iframeE4>0) { iframeE3.focus(); iframeE3.print(); } else { alert('no selection'); } }
Hi ALL, how to work with confidence level & threshold value while work with Speech API 5.1 in windows xp to increase accuracy of speech recognition.
how to make "yahoo answers" website like paging list control(horizontal list with page nos in boxes style) in C# windows application.. In this type of control i wanna generate list of page nos dynamically..with proper style like hover. example can also be seen in windows live search results at microsoft website. pl suggest solution for this..
Thanks for sharing information about audio format..... But my actual interest is to know about implementation point of view of such decoding (flac,wma,aac,m4a to pcm(wav)) conversion in .net mobile application.
modified on Saturday, October 11, 2008 5:34 AM