| Thread | Last Post | Replies |
|
| Multiple datasources in 1 table | 19 Dec 2006 04:45 GMT | 1 |
I have a stored procedure that returns statistics based on the parameter passed to it. I would like to have a table with 4 columns, (and about 20 rows which is what is returned from the SP). Each column would be the result a different static parameter passed to the SP.
|
| Solution with Multiple Websites | 19 Dec 2006 03:41 GMT | 1 |
This is a newby question and I hope there is a simple solution: I'm working on a C#.NET solution that will have two separate websites. I'm wondering if there is a way to have one solution with two separate websites or if I need to create three solutions: One for each website
|
| Problem with spawning new thread in ASP.NEt | 19 Dec 2006 02:22 GMT | 2 |
I have a long running task to be called from an aspx page. My code segment Dim ts As ThreadStart = New ThreadStart(AddressOf runLRProcessAsync) Dim workerThread As Thread = New Thread(ts)
|
| Page_Init and Control Events | 19 Dec 2006 01:11 GMT | 1 |
I learned that if you want asp.net to maintain viewstate of a dynamic control, you instantiate / add it to the html form during the page_init phase. At least that's the way I've been coding my pages for the past few years.
|
| business layer, data access layer , presentation layer for asp.net using C#.net | 18 Dec 2006 23:27 GMT | 1 |
i have got a problem i want to design business layer, data access layer , presentation layer for asp.net using C#.net , can anyone help me to solve this problem. i want some resources to complete this. i am trying very hard. Do you have any idea about website or any links where i ...
|
| Returning a XML from webservice | 18 Dec 2006 22:05 GMT | 1 |
Helllo. I need to return a XML from my WebService, but I'm not getting the result as a XML. I mean, instead of receiveing a tag (<xyy></xyz>), I'm receiving it encoded (with < or >).
|
| Visual Studio.NET 2005 Service Pack 1 | 18 Dec 2006 20:22 GMT | 29 |
http://msdn.microsoft.com:80/vstudio/support/vs2005sp1/default.aspx 1) This is big - nearly 500Mb 2) If you have WAP installed, you must uninstall it first - WDP doesn't need to be uninstalled
|
| Using Drop Down List with Gridview Query | 18 Dec 2006 19:03 GMT | 4 |
I have a query similar to this: "Select ProductID, ProductName, ProductDescription where MFGID = @MFGID". I use a Drop Down List populated with the MFGID's to populate the @MFGID variable. My question is, using this technique, is there a way to say "Return all Manufactures"? ...
|
| META Tags Uniqueness for WebForms which use MasterPages | 18 Dec 2006 17:34 GMT | 2 |
I was wondering how to go about setting the keywords for pages whichg derive from MasterPages, and then I thought I know, lets put a runat=server on the keywords meta tag and set the content. <meta id="pageKeywords" runat=server name=keywords content="" />
|
| Web Developer 2005 - Where has all the code gone ? | 18 Dec 2006 17:25 GMT | 21 |
I see that the code behind is now a partial class. So where is the code associated with the server controls declaration etc ? Is this generated on the fly now, or am I missing something ?
|
| How Windows Live Mail Works | 18 Dec 2006 17:16 GMT | 1 |
Hi friends, I have a web page in which i have used frames like in windows live mail. Like in Windows live mail only the email detail section get refresh not the email listing section, but in my case both
|
| How does my theme default.css get in my web page? | 18 Dec 2006 17:14 GMT | 4 |
Hi; It's there but I don't see anywhere that I actually tell my pages to include default.css from my theme? And how can I add a second css file from my theme to a specific page?
|
| Time Conversion wrt TimeZone | 18 Dec 2006 17:03 GMT | 1 |
Given Datetime value in a string, I wish to write a code where in I could convert the datetime to a value in particular timezone. For example, If the given datetime is 10:00 am in CST, i wish to convert it to Eastern(11:00 am) or anyother timezone depending on the user's
|
| Listbox with spaces from SQL query | 18 Dec 2006 16:47 GMT | 2 |
I am trying to populate a listbox with data that is pulled from a sql query. Here is my C# code behind the page: sqlConn1.Open(); SqlCommand sqlComm2 = new SqlCommand("SElECT
|
| Using Bound Drop Down Lists in FormView | 18 Dec 2006 15:52 GMT | 1 |
I have created the Insert Template for my FormView on an aspx page using asp.net 2.0. Inside this FormView I have some TextBox's and other elements. One of these elements is a DropDownList which needs to be populated from fields in a database.
|