all groups > asp.net > may 2006 > threads for wednesday may 17
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
taking a table out of a page and emailing it
Posted by tshad at 5/17/2006 11:58:44 PM
Is there a way to read the current Asp.net page where I may have built some
statistics and displayed it on the screen in a Datagrid, and take the table
(datagrid) and put it into an email and send it from that page?
I would also like to read part of a page and print it directly to the
printer.... more >>
How to allow a webbrowser to restart a session after it has expired?
Posted by Riaan at 5/17/2006 11:14:00 PM
Hi guys!
I have an issue that needs urgent resolution. Imagine this scenario:
You have:
1 production server running Windows Server 2003, IIS6 and an instance
of MSDE 2000.
There is an asp.net app (written in C#) running which has the only
purpose of rendering a page with a "Next" button on... more >>
DropDownList.SelectedValue
Posted by CK at 5/17/2006 10:33:58 PM
Hi All,
I have a class and one property is an Enum. I am trying to persist the
DropDownList.SelectedValue to the class property.
I am using
job.ExpRelated =
Enum.ToObject(typeof(ExperienceRelated),ddlExpRelated.SelectedValue);
but it doesn't build. Any ideas anyone?
Thanks All,
~CK
... more >>
Office Toolbar Css
Posted by Chris at 5/17/2006 10:30:53 PM
Does anyone know where I download a css file which mimics Office style
toolbars etc. I'm rubbish at webdesign and I just want my pages to look
professional. Regards, Chris.
... more >>
Life of static variables in ASP.NET 2.0
Posted by Shimon Sim at 5/17/2006 10:10:44 PM
I have a static variable defined something like this
private static Dictionary<string, string[]> roles = new
Dictionary<string,string[]>();
Can I safely assume that it will be live for the live of application?
Meaning that any thread/page of the application will have access to the data
... more >>
image concatenation in c#
Posted by byrd48 at 5/17/2006 8:44:03 PM
Hi,
I haven't had much luck searching for guidance on the following
challenge.
I have a .NET app in which I would like to take multiple thumnail
images and combine them into one flat image.
Could someone give me an example of how to take two images, imgA and
imgB and create imgC which would be... more >>
Page load problem
Posted by Balaji at 5/17/2006 8:27:25 PM
Hi there,
I have a strange problem. In our app we have a iframe and load all the
pages in the iframe for the menu which is available in the page. Using a
dive we have displayed a please wait message in the base page on loading
every page.
Now comes the problem. we now have to setup ... more >>
How can I change my metatag in my masterpage?
Posted by needin4mation NO[at]SPAM gmail.com at 5/17/2006 8:24:18 PM
Hi, I have a metatag description like
(this is in my masterpage)
<meta name="description" id="MyMETADesc"....
but this *inline* code fails:
(this is in a contentpage based upon the master)
<script runat=server>
protected void Page_Load(object sender, EventArgs e)
{
MyM... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Custom control within a custom control
Posted by J R M at 5/17/2006 8:23:16 PM
I've developed a custom control (it's basically a drop-down list and
then a couple of textboxes to include meta-data for the selection) that
I'm embedding into another custom control (the idea is to allow a
dynamic number of control1 to appear in control2). Everything renders
correctly, however... more >>
Detecting Downlevel Browsers
Posted by Jeremy S. at 5/17/2006 8:11:51 PM
In an ASP.NET 1.1 Web application, how can I detect - with *reasonable*
accuracy - whether any particular browser is a downlevel browser?
My objective is to insert a different menu (different User Control
containing a different menu) for downlevel vs uplevel browsers.
This is very importan... more >>
ObjectDataSource question??
Posted by Islamegy® at 5/17/2006 7:52:01 PM
How could i pass a parmeter to objectDataSource..
objectDataSource1.UpdateParameters["ID"]
don't have "Value" Property, How could i set parameters value at runtime??
... more >>
How to add a global reference in VB.NET 2.0
Posted by MSDN at 5/17/2006 7:48:58 PM
Hi ,
I tried to add a global reference in VB.NET under
Project>Propertied>References <Add ....>
It does not seem to be working.
I still have to Import the Reference etc.... not the same as 1.1
Thanks for any input
SA
... more >>
User Control question
Posted by craig via DotNetMonster.com at 5/17/2006 7:40:15 PM
Ok, there is probably a very simple answere to this, but I'm a VB newbe and
this is completely stumping me.
I am trying to create a user control which will consist of a DataGrid and
several buttons which will be used throught our application. There is code
that will always be executed when a ... more >>
Changing secret question/answer
Posted by Vincent Courcelle at 5/17/2006 7:27:53 PM
Hello,
I'm using ASP.NET 2 System.Web.Security.SqlMembershipProvider.
I would like to make my users able to change their secret
question/answer they entered at subscribtion.
I can't find anything into Membership. (static methods).
I know I can change this in some manner (i did a membership pro... more >>
How to change a redirect when using forms-based authentication
Posted by AAOMTim at 5/17/2006 6:48:01 PM
Depending on user permissions, I would like to be able to change a redirect
to disallow certain users from going to a bookmarked page for which they
should have no access. Is there a way to modify the redirect in the
<LoginControl>_LoggedIn event?
--
Tim... more >>
FormView and FileUpload
Posted by Islamegy® at 5/17/2006 6:43:54 PM
I'm use FormView for editing a photo gallery... I add FileUpload control to
upload images to the Gallery.
I'm binding my Formview to objectdatasource
i tried upload images onItemInserting & onItemUpdating but no luck..
FindControl() didn't work and can't find my fileUpload control..
any hel... more >>
DetailsView - Hide row/field conditionally?
Posted by K B at 5/17/2006 6:40:12 PM
Hi,
Is there ANY WAY to hide a row/field in a DetailsView based on meeting a
condition at the ItemCreated or ModeChanging event -- or any other way?
There appears not to be, but I was hoping for confirmation before
totally giving up.
Thanks,
Kit
*** Sent via Developersdex http://www... more >>
Where is the Designer Code in 2.0 go As in 1.1
Posted by MSDN at 5/17/2006 5:49:14 PM
Hello,
Where can I find the following in 2.0
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
InitializeComponent();
base.OnInit(e);
}
Thanks,
Sa
... more >>
Questions about "Handles BlahBlahBlah" for codebehind
Posted by antonyliu2002 NO[at]SPAM yahoo.com at 5/17/2006 5:15:08 PM
Right now I put my VB code in the aspx pages. I would prefer to use
codebehind, especially many of my VB functions may be shared across
multiple aspx pages.
I've tried a few pages with codebehind by follwing some examples on the
Web and they work just fine.
However, I am scared away from c... more >>
how can I make my dll strong name by using Visual Studio 2005 Express?
Posted by Ben at 5/17/2006 4:54:37 PM
Hi,
I write a simple dll in C# using Visual Studio 2005 Express,
how can I make my dll strong name? (so I can put it into Global Assembly
Cache)
Ben
... more >>
DataGrid header question
Posted by craig via DotNetMonster.com at 5/17/2006 4:53:22 PM
I have created many screens which all have a DataGrid and a set of buttons.
I decided to attempt to create a user control which would contail a DataGrid
and this set of buttons. However, the DataGrid functions dirrerently in the
user control then when I put the DataGrid directly on the form.
... more >>
ASP.NET 1.1 & 2.0 On IIS
Posted by Asaf at 5/17/2006 4:44:02 PM
Hi,
I have some IIS applications installed on my Win 2003 Server that works with
ASP.NET 1.1 including SQL Server Reporting 2000.
I have uploaded an ASP.NET 2.0 to my IIS server and when I try to run it I
am getting the error "Server Application Unavailable".
The version 2.0… is selected ... more >>
Web Page code behind inherits from another class
Posted by Mark at 5/17/2006 4:29:33 PM
In ASP.NET 1.x a codebehind file X could inherit from class Y assuming that
Y inherited from System.Web.UI.Page. In ASP.NET 2.0 this appears to be
problematic since the previous codebehind is now a partial class and is more
closely tied to the .aspx page. Is it possible to mimic this behavio... more >>
Tab order w/ 1.1
Posted by Jon at 5/17/2006 4:25:17 PM
I am sure this has been covered before, but I'm not having luck finding much
that's useful.
I use a single web page that has several text inputs and other controls,
including a couple of placeholder controls that I load various web user
controls into, each of these user controls also contai... more >>
Looping through Enum on Page_Load
Posted by CK at 5/17/2006 4:20:29 PM
Hi All,
Good morning. I had a quick question. I have a public Enum. During page load
I want to loop thru the Enum and put those as items in an asp:dropdownList.
Does anyone have any sample code to do this? Like a foreach loop.
Thanks for any help,
CK
... more >>
Garbage Collection not running?
Posted by klar02 at 5/17/2006 3:42:06 PM
We have a web server with 2GB of physical memory on it and we are seeing the
memory usage running over 800,000KB in Task Manager. We have seen instances
where the memory being this high(due to problems with ColdFusion) has caused
the server to hang but this server is not hanging. Can anyone giv... more >>
Subclassing Page
Posted by paul.hester NO[at]SPAM gmail.com at 5/17/2006 2:54:46 PM
Hi all,
I'm planning to migrate a website from ASP to ASP .NET 2.0. The old
page has a common include file that performs a series of tasks when
every page loads. I'm new to ASP .NET 2.0 and am not sure of the best
way to implement this. I'm considering subclassing the Page class so
that all t... more >>
FindControl in GridView
Posted by Bruno Alexandre at 5/17/2006 2:44:56 PM
Hi guys,
I have this code:
Dim gv As GridViewRow
Dim str As String = ""
Dim dd As DropDownList
For Each gv In gvItems.Rows
If gv.RowType = DataControlRowType.DataRow Then
str &= gv.RowType.ToString & "<br/>"
dd = CType(gvItems.FindControl("dd1"), DropDownList)
If... more >>
Best way to do db search for site
Posted by Michael at 5/17/2006 2:36:02 PM
Hi,
I have not implimented a search feature yet for a web site yet and wanted to
get some advice. Most of the search tips I have seen so far only deal with
searching html files or other web files. I don't need this type of search.
All I need to do is search the products tables (description an... more >>
Paging a datagrid
Posted by Joris De Groote at 5/17/2006 2:25:34 PM
Hi,
I have added paging to my datagrid, and in the code wrote this:
Private Sub dtgZoekResultaten_PageIndexChanged(ByVal source As Object, ByVal
e As System.Web.UI.WebControls.DataGridPageChangedEventArgs) Handles
dtgZoekResultaten.PageIndexChanged
Me.dtgZoekResultaten.CurrentPageIndex = e.... more >>
Anonymous and authenticated access with multilpe web.config files
Posted by AAOMTim at 5/17/2006 2:15:02 PM
I have a web project in which I would like to structure my top level
directory to provide a user with anonymous access and a subdirectory for
secure access that uses forms-based authentication. I'm under the impression
that I need 2 web.config files: one in my top level directory for anonymou... more >>
Can a ListBox be made to look like a drop down?
Posted by Eric at 5/17/2006 2:13:27 PM
I have a requirement for a multi-select list, but it must appear as a drop
down. I cannot find any properties on the ListBox control, nor any google
hits on how to accomplish this. Anybody have an pointers?
Thanks,
Eric
... more >>
Domain problem
Posted by Blasting Cap at 5/17/2006 2:11:54 PM
I'm trying to debug a website that has been converted from VS2003 to
VS2005 and am getting this message:
"The application domain in which the thread was running has been unloaded"
Problem is - it doesn't tell you what's wrong or where to fix it. To my
knowledge, the operating environmen... more >>
OnSelectedIndexChanged on DDL not working? IE6.0.2 bug?
Posted by Groove at 5/17/2006 2:03:54 PM
I have a strange problem. It seems that for some reason, a
OnSelectedIndexChanged event is no producing an error in IE6. What concerns
me is that I just performed that large Windows update a couple of weeks ago
and it updated ActiveX "stuff" in IE. I'm not sure if the update has
effected I... more >>
Is it possible to debug a script in VS 2005 that's in an include file?
Posted by Eric at 5/17/2006 2:03:42 PM
Instead of inlining a script in the .aspx page I add it using the
ClientScript.RegisterClientScriptInclude() function. However, I seem to
have lost the ability to debug the script at runtime since I moved the
script into the .js file instead of inlining it in the .aspx page. Is there
a way ... more >>
membership/role question
Posted by ^MisterJingo^ at 5/17/2006 1:54:41 PM
Hi,
If I add a database to my application (vs2005) and use the membership
and role controls, VS seems to set up all the tables automatically.
Where does it store all this configuration information? I look in
web.config and there is nothing there.
I ask as my webspace provider has to integra... more >>
Importing CSS file in page that uses a master page
Posted by McGeeky at 5/17/2006 1:33:16 PM
Hi. I have a page that is based on a master page. But how do I tell this
page to use a CSS file using the LINK tag in the HEAD tag when the master
page has this declaration in it?
--
McGeeky
http://mcgeeky.blogspot.com
... more >>
AJAX auto complete component: AutoAssist 0.8
Posted by guangnan cheng at 5/17/2006 12:32:31 PM
AutoAssist is a AJAX auto complete component that writing AJAX features
like Google Suggest easy for developers who don't speak browser
quirks as a second language.
(http://capxous.com/)
For a step-by-step installation and usage guide, please see the Getting
Started Guide (http://capxous.com/... more >>
Raising an handling and event on a checkbox in a gridview...
Posted by Stu Lock at 5/17/2006 12:20:46 PM
Hi,
I have a checkbox in a gridview template column with autopostback turned on.
I want to be able to handle this event but am unsure how. With other control
of this nature I have used CommandName and CommandArgument - but these are
not available on checkboxes.
Also, the checkbox does no... more >>
Postback question
Posted by Terry Holland at 5/17/2006 12:12:16 PM
I have an asp page that contains a user control. This control is a panel
containing a number of link buttons that get displayed if certain conditions
in the db are met and these conditions can take quite a while to evaluate.
Consequently that page can take a while to open. These links are alert... more >>
newboe: how to get the user name?
Posted by Jeff at 5/17/2006 11:55:33 AM
OS: XP pro
IDE VS 2005 .NET
ASP.NET 2.0
System.Security.AccessControl.SecurityInfos.Owner.ToString() returns
domain\username...if the domain is named "TEST" and username is "per" then
this statement returns TEST\per....
But what code must I do if I went to the fullname of the user?
Je... more >>
Session lost in web Farm
Posted by rochagasdiniz NO[at]SPAM gmail.com at 5/17/2006 11:29:22 AM
I am having a problem configuring a state server session on a Web
Farm.When the user records a session variable in one server and tries
to read it on another server, I get a null reference exception.
I already checked the path on both servers , machine key and Instance
Id on both IIs.
What else... more >>
Best Practices: Table of IDs
Posted by Sarmatia NO[at]SPAM gmail.com at 5/17/2006 10:59:18 AM
I have a table of ID vaules that are related to lookup tables.
I created a DataAccess component from wich the ObjectDataSource gets a
typed datatable. A GridView is bound to that ObjectDataSource and
allows Edit and Delete.
On the same page is the means to add a new record (since the GridVie... more >>
question about using buttons to drive display
Posted by Adam Sandler at 5/17/2006 10:27:12 AM
Hello,
I have a page under development which will have a couple of buttons on
it. I want those buttons to be context sensitive so that if button1 is
clicked, the user enters information into two different controls... but
if button2 is clicked, then only one control is used and it is
differen... more >>
HttpRequest.IsAuthenticated, modify it
Posted by Andrea at 5/17/2006 10:26:42 AM
Is possible, without using the login system provided with .net framework,
to modify the value of this property?
Reflectoring it, there is a get_IsAuthenticathed() booleand fucntion, but
I don't know where it is, what he do, and
honestly I don't think that it's a suitable way try to modify tha... more >>
"Attached" Labels for TextBoxes, etc.?
Posted by Alex Maghen at 5/17/2006 10:15:02 AM
Hi. Before I go and build my own Control for this (something I'd really
rather not do), I wanted to know if ASP.NET 2.0 has any built-in
functionality for effective "attaching" a label to a TextBox, DropDown List,
etc. in much the same way that it has been implemented in the CheckBox and
Rad... more >>
Calling C# appcode from a vb aspx page
Posted by TdarTdar at 5/17/2006 9:46:02 AM
Hello,
Is there a way to call a C# class from a VB aspx code behind page?
Tdar
... more >>
GAC and Source Safe
Posted by Sridhar at 5/17/2006 9:34:02 AM
Hi,
I have a question regarding the Global Assembly Cache (GAC) and Source
Safe. We have some common dlls which we would like to put in GAC so that they
can be used in different applications. We are using Source Safe as a Version
Control. Let's say I have created a data access library( on... more >>
Meta tags in HTML
Posted by Mantorok at 5/17/2006 9:21:59 AM
Is it advisable to use metatags in html pages?
I'm going to be creating som ehtml pages on the fly from my website and then
ultimately publish them, however I want these pages to be picked up by search
engines - can meta tags be used in this way, and if so, what are the recommended
usages?
... more >>
JavaScript not working.
Posted by tshad at 5/17/2006 9:11:01 AM
I have an ASP.net page where I am trying print the page directly from a
printer. The only way I can figure out how to do this is in Javascript with
PrintDomTree.
The problem is that I don't get anything back when using a getElementByID.
It is null. The ID is there.
Here is the JavaScri... more >>
Same function different signatures
Posted by tshad at 5/17/2006 9:03:55 AM
I have a function that I want to jump to from 2 different controls
(ImageButton and LinkButton).
The problem is I get the error:
Method 'Public Sub PrintPage_Click(sender As Object, e As
System.Web.UI.ImageClickEventArgs)' does not have the same signature as
delegate 'Delegate Sub EventH... more >>
Web.Config parsing errors with Web App projects using IIS
Posted by David Williams at 5/17/2006 8:46:03 AM
Has the Schema of the Web.Config changed in Web App Projects? After
converting my 2005 Web Site project to a 2005 WAP, and switching to IIS
Web Server, I am getting a number of errors at run time in my web.config
files starting with:
Unrecognized attribute 'type'.
This error occurs when ... more >>
ATLAS website
Posted by Nate at 5/17/2006 8:36:02 AM
Hi -
I have been playing around with ajax and atlas and noticed that when I build
my ATLAS web site I cannot locate the DLLs created during the build.
My project properties say they should be in:
C:\Documents and Settings\Heaton\My Documents\Visual Studio
2005\Projects\TaskList\PrecompiledWe... more >>
ActiveDirectoryMembershipProvider
Posted by Glenn Eastlack at 5/17/2006 8:28:24 AM
I have been trying to use ASP.NET 2.0 built-in Membership Providers.
Particularly the ActiveDirectoryMembershipProvider.
My web.config looks like this:
<connectionStrings>
<clear/>
<add name="ADConnectionString"
connectionString="LDAP://192.168.32.129/CN=users,CN=testdns,DC=tes... more >>
ASP.NET 2.0 QUESTION
Posted by BillGatesFan at 5/17/2006 8:19:47 AM
I have a login page that once a user logs in it take them to an app
menu. On the app menu are links to separate applications.
Questions
1. When do I get my profile, when I login into the global login page or
when I click on an application?
2. Can this even be done?
3. Can you have 1 ... more >>
consuming a .wsdl
Posted by Julia at 5/17/2006 8:16:03 AM
Hi
I have got a wsdl file that I want to use in my asp.net 2.0 project. How do
I refer to this file (include it to my solution) so that I can create an
object from it and consume the functions in there?
Thanks
Julia... more >>
web.sitemap
Posted by MDB at 5/17/2006 7:55:02 AM
hello all, I have a website that has multiple sites within.
So for example site1.Mysite.com is in a directory called site1, then
site2.Mysite.com is in a directory called site2.
My question is, is it possible for these directories to include the
app_code, app_data, web.config and web.site... more >>
Profiles
Posted by Ron at 5/17/2006 7:38:01 AM
Hi,
My question is about the new ProfileProvider class in ASP.NET 2.0
and what its limits are.
Can you have multiple Providers with unique properties to each be defined
in the web config file and also group them as such.
example as follows
<profile defaultProvider="MyProfile_ProfilePro... more >>
Can a grid column bound to a DateTime be null?
Posted by Thirsty Traveler at 5/17/2006 7:34:14 AM
I have a DataTable with a DateTime column that is bound to a DataGrid. The
grid is configured to display/page a maximum of 10 rows. For visual effect,
I would like to display the grid with a all rows populated to null rather
than have it appear only after the dataset is retrieved and bound to ... more >>
ValidateRequest customization
Posted by Ben R. at 5/17/2006 7:30:03 AM
Is there any way to selectively have ValidateRequest on based on the logged
in user?
Also, can we control what tags will be allowed? For example, I don't have a
problem with my users toggling bold, but don't want them using scripting. Is
there a way to customize the tags that are allowed?
... more >>
Auto Form Submit
Posted by mazdotnet at 5/17/2006 7:14:23 AM
Hi guys,
I have the following
<form name="formpurchase" id="formpurchase"
method=postaction="https://site.cgi">
<input type=hidden name="MerchantNumber" value="<%=MerchantNumber
%>">
<input type=hidden name="ReturnURL" value="<%=retURL %>">
<input type=hidden name="Products" va... more >>
membership provider
Posted by John at 5/17/2006 7:08:00 AM
OK, I read and read again information on using the logon control, 'custom
providers' but none are really helping me out with creating a provider to
go against my database to validate the users logging into my web app. What
happens when a user logs into my site is, 8 queries are executed, 1 ve... more >>
"Transparently" printing a word document
Posted by ewolfman at 5/17/2006 6:03:42 AM
Hi,
I need to provide the user with the option to click something, and what
follows is:
1. Download a word document, without displaying winword.
2. Printing the document to the default printer (no print dialog should
pop).
3. Close word.
All of this must be completely "transparent" to the... more >>
GridView: conditional editing
Posted by JDC at 5/17/2006 5:58:32 AM
Hi all,
How do I allow or disallow editing in a GridView on a row-by-row basis,
depending on the value of a field in that row?
TIA, JC
... more >>
Datasource FilterExpression fails for string fields
Posted by j.gibson NO[at]SPAM ahrc.ac.uk at 5/17/2006 4:22:23 AM
VS 2005
C#
ASP.NET
I have a Gridview which is filled from an objectdatasource. I have some
filtering - which works perfectly when the field to be filtered is an
INT.
dscIssues.FilterExpression += " and (assignedtoid = 1)" works ok
but if i filter on a string field is doesnt bring bac... more >>
IIS Could not load ASP.NET pages - Strange Solution
Posted by WoodenSWord at 5/17/2006 4:06:01 AM
Hello i would like to share with you my adventure!!!
IIS could not load aspx or asmx pages by NO Means!
I reinstalled/unistalled/installed IIS .NET FRAMEWORK 1.1 & 2 , Vs2005 ,Sql
server 2005 hundreds of times.
Searching the forums i found that the most possible solution would be IIS
mappin... more >>
programatically changing the .net version of virtual directory
Posted by Rak at 5/17/2006 2:21:02 AM
I am looking for a way to programatically change the .net version of the
virtual directory that I am creating within a aspx page.
As part of creating a new customer in my asp.net 2 application, it
automatically creates a virtual directory and configures it. I am using the
DirectoryServices.Di... more >>
Basecamp solution
Posted by jacob.saxberg NO[at]SPAM gmail.com at 5/17/2006 1:34:10 AM
Hi.
Do you know of a system like Basecamp (www.basecamphq.com) that can be
installed in-house?
Jacob
... more >>
GridView to FormView - DataBind
Posted by mosscliffe at 5/17/2006 1:20:33 AM
Following Mr Tabors Video on Databinding I implemented the following
code
In GridViewSelectedIndexChange
I coded DetailsView1.pageindex = gridview1.selectedindex
This works fine for the first page of the binding, but once thr
gridview re-arranges - the formview only ever sees in effect th... more >>
FormsAuthentication timeout and losing page state
Posted by Nick at 5/17/2006 1:01:02 AM
Hi,
I have a page that the user enters some data into - textboxes and choosens
some options out of checkboxes and listboxes. However there is often a delay
between when they make the last amendment on the page, and when the hit the
Update button. Often the Update is requested after the Fo... more >>
Using DICOM (ActiveX ctrl) in ASP Net with C#
Posted by jayender.vs NO[at]SPAM gmail.com at 5/17/2006 12:08:58 AM
Hello ,
I need to add a ActiveX control ...the Dicomviewer in ASP>net ..
I am able to do it fine in C# project but not in web application
I add that Dicom dll (.ocx file) in my ASP.Net form so it added like
this:
Code:
<OBJECT id="Viewer" style="Z-INDEX: 101; LEFT:..........
I need to a... more >>
Go to next page
Posted by mac at 5/17/2006 12:00:00 AM
Hi! I am Mac
I have a problem with my code with regards to call the next page
I use response.Redirect just to show the next page, I try to call the
next page on form 2 using button. Please correct my code on using
response.redirect with Namespace.
The error is
The resou... more >>
migration sql2005 into sql2000
Posted by PointMan at 5/17/2006 12:00:00 AM
i make a project in vs2005 that use ASPNETDB.MDF
and use <asp:LoginView ID="LoginView1" runat="server" > server control for
vs2005
in this case , i'd like to use hosting service but this hosting company does
not support sql2005
that's why i have to use sql2000
so my quetion is how can i m... more >>
Got Next Page
Posted by mac at 5/17/2006 12:00:00 AM
Hi! I am Mac
I have a problem with my code with regards to call the next page
I use response.Redirect just to show the next page, I try to call the the
next page on form 2 using button
but I got an error and it says.
Please correct my code on using response.redirect with N... more >>
|