all groups > asp.net > december 2004 > threads for saturday december 25
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Hosting the ASP.NET pipeline.
Posted by Mujtaba Syed at 12/25/2004 10:34:48 PM
I am trying out some code to create an ASP.NET 2.0 application host. The
following two classes are in the same assembly, HostingDemo.exe:
class Program
{
public static void Main ()
{
Host host = (Host) ApplicationHost.CreateApplicationHost (typeof
(Host), "/", Directory.Ge... more >>
DllImport with ASP.NET ?
Posted by Brian Anderson at 12/25/2004 9:55:59 PM
Hello,
is it possible to use DllImport to call a DLL in ASP.NET ?
Or is it necessarry that my DLL has to be copied into \System32 ?
My DLL is a native C++ 7.1 DLL (not managed, no COM, no regsvr32) and uses
Assembler to make some math in SSE.
The result is given out as an Int.
Using a C#... more >>
XML Feed
Posted by Steve Peterson at 12/25/2004 8:31:13 PM
Hello
I need to provide a live XML feed from my web application to a 3rd party.
The 3rd party needs data from our database in XML format which will be
fromatted & presented on a web page sort of an RSS scenario. The problem is
I'm not sure how to to provide a dynamic XML file, or rather the... more >>
Checkbox problem
Posted by JIM at 12/25/2004 7:53:35 PM
Hello,
I would like to solve the following problem :
I've a web site with ex. 5 checkboxes
Each checkbox contains the name of a certain task
ex.
asp:Checkbox 1: Task 1
asp:Checkbox 2: Task 2
...
asp:Checkbox 5: Task 5
Each time a task is finished on the server... more >>
My session is keeping disappear / reset
Posted by Anavim at 12/25/2004 5:05:44 PM
Hi,
I have a simple ASP.NET application where you do a login and than I
redirect you to the main page of the application.
Once your login is successful, I'm setting the user object to the
session and redirect to the main page. With some reason my session is
start from beginning (the Session... more >>
design question, how to implement controls
Posted by Davids at 12/25/2004 5:03:44 PM
trying to stop thinking classic ASP way, I want to ask you a design question
about how to seperate page functions. Let's say I have a blog.aspx page
which has 3 subpages;
1) display all (short version) blog entries for selected month or blog
category
2) display selected blog (long version)
... more >>
ActiveX like control for asp.net.
Posted by Bredal Jensen at 12/25/2004 4:29:22 PM
Merry christmas to you all IT gods out there,
I have come accross a situation were i need to display some information
(text from a database)
on a web page. The text i dynamic . I need to change it every 5 minutes.
How can this be done using asp.net?
Many thanks in advance
JB
... more >>
Struggling - 'static' vs 'void' etc?
Posted by jason NO[at]SPAM catamaranco.com at 12/25/2004 4:19:35 PM
I am really struggling to conceptually understand classes in C# especially
the use of the strange keywords 'static' 'void' and 'override'....
Is there a 'idiots' way of understanding these concepts broadly before even
touching a line of code....
Thanks
Jason
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Convert ASP.NET script to code behind
Posted by Thubaiti at 12/25/2004 11:29:03 AM
Hi,
I have this code in my ASP.NET and I want to convert it to C# (code behind)
<asp:Repeater id="subCategoryRepeater" runat="server">
<ItemTemplate>
<ul>
<li>
<asp:HyperLink id="subCategoryHyperLink" runat="server" NavigateUrl='<%#
"subcategory.aspx?subcategoryid=" +
Convert... more >>
How do I stop the web page "flash" when posting a webform?
Posted by bill at 12/25/2004 11:16:07 AM
Is there a setting that will prevent the page "flash" when posting back a
webform that will be populated with data? I just want to update the
controls, not the entire page.
... more >>
datagrid
Posted by Manny Chohan at 12/25/2004 11:11:03 AM
i have a datagrid bound to a datatable. Each row has a hyperlink button
clicking whiich wil redirect users to different page which opens the detailed
information for that item stored in database. Now if i need to open different
record, i need to go back to datagrid and click on respective butt... more >>
|