all groups > asp.net > september 2006 > threads for saturday september 30
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
Asp.net configuration don't see my database.
Posted by craigkenisston NO[at]SPAM hotmail.com at 9/30/2006 11:23:25 PM
I started an application using the membership provider from Microsoft.
I ended with two databases, one for my data and other for the
memberships.
I then decided to merge both databases and everything went fine. I
could ran my application and worked perfectly.
But now I need to run the asp.net... more >>
Master Page
Posted by Weston Fryatt at 9/30/2006 10:48:03 PM
Can you change text or add controls dynamically on a Master Page (not in the
Content Place Holder)?
... more >>
Screen Size Recommended
Posted by Samuel Shulman at 9/30/2006 10:12:59 PM
I currently design a new website and I wonder whether to design for a
600/800 screen or 1024/768
Any accepted advice on that?
Thank you,
Samuel
... more >>
Remove first word of a string
Posted by shapper at 9/30/2006 7:54:09 PM
Hello,
I want to remove the first word of a string.
For example:
MyString = "Hello World! How are you?"
I need to create 2 string:
MyString1 = "Hello"
MyString2 = " World! How are you?"
I was able to get the first word but not to remove it from the original
string.
Could someone h... more >>
How to use Server.Execute within the server side VB.net ?
Posted by Oscar at 9/30/2006 7:00:44 PM
What's the right coding to open another aspx page within server side vb.net
(not within the html) ?
In case I only code Server.Execute("page2.aspx") with a VB.net Subroutine,
the browser shows a mess of both page 1 and page 2 within the same window.
... more >>
Can't access controls in code behind
Posted by David A. Osborn at 9/30/2006 6:31:18 PM
I have a web project inVS2005 that I copied some existing pages from a
website that I previously created. To clarify the website was originally
created in Visual Web Developer Express and not I have created a web project
(not a website) in VS2005 and add a few of the pages to this web project ... more >>
installing services
Posted by Mukesh at 9/30/2006 5:55:18 PM
Hi friends i wants to install a service (MS application Block)
on the server using a web application.
Can i do this if yes then how can i do this
I m using MS VisualStudio.net 2003, C#, .net1.1
Mukesh
Delhi India... more >>
How to load another aspx page within a VB subroutine?
Posted by Oscar at 9/30/2006 4:32:41 PM
What code do I need within VB to load another aspx page within the browser ?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
dynamically writing property values to a control INSIDE of a user control?
Posted by kenfine NO[at]SPAM nospam.nospam at 9/30/2006 4:15:32 PM
I want to use codebehind to pass property values to a control that I've
embedded INSIDE of a user control.
In other words, let's say I have the following:
MyPage.aspx
....with the following control placed on it...
MyUserControl.ascx
.... and inside of MyUserControl.ascx, is an instanc... more >>
Substring and ()
Posted by shapper at 9/30/2006 12:29:29 PM
Hello,
I have a string which looks as follows:
"asdksdjfssdf@sdfsdfsdfsdfsdf.com (John Smith)"
How to create a substring with only the part which is between (), i.e.,
the name?
Thanks,
Miguel
... more >>
Usercontrol in Page_Load
Posted by Big Charles at 9/30/2006 12:28:35 PM
Hello,
I don't know how UserControl should work:
If I put MyPlaceHolder.Controls.Add(MyUsrControl) inside "If (Not
Page.IsPostBack) Then", when MyWebForm is loaded, the usercontrol is
not loaded.
Why not?
Example:
Public Class MyWebForm
Inherits System.Web.UI.Page
Privat... more >>
Uppercase
Posted by shapper at 9/30/2006 12:25:01 PM
Hello,
How can I make the first letter of a string to be upper case?
Thanks,
Miguel
... more >>
XML, XSL and ASP.Net
Posted by djamilabouzid NO[at]SPAM gmail.com at 9/30/2006 11:56:02 AM
Hi,
I am wondering if someone can help me. This will be very grateful. Here
is an explanation of my problem:
o I have collections in SQL Server 2005 database
o I search these collections by keywords
o I collect the search results in an XML
o I use XSL for the layout of my results
o I di... more >>
Moving to Java or stay with ASP.NET ?
Posted by Big George at 9/30/2006 11:21:22 AM
Hello,
Just looking for some feedback.
I have an intermediate level of ASP.NET. Since some time ago, I liked
to learn Java.
However, my hughe problem is time: working many hours every day and
studying IT project managment at university at night, don't leave me
time to learn Java.
So,... more >>
I guess no one knows how to get the web path to currently selected theme?
Posted by ThazKool at 9/30/2006 11:20:36 AM
I have been trying to figure this out and to no avail.... If I had a
couple of hours to spend on this I would, but alas I do not. If anyone
could help, I would greatly appreciate it.
Thanks,
Ch=E9
... more >>
Text to HTML
Posted by Tina at 9/30/2006 11:08:44 AM
I have a text file perfectly formatted with carriage returns, indents,
spacing etc in NotePad. I want to put text that looks exactly like that
into a <div> and get it formatted exactly the same way in Visual Studio.
But I can't seem to get this done in Visual Studio other than pasting it
in... more >>
Responding to event from programmatically created button - ASP.NET
Posted by dinotius NO[at]SPAM gmail.com at 9/30/2006 10:56:01 AM
Hi,
Can anyone please tell me how to respond to an event in VB when a
programmatically created button is clicked?
I can get it to work if the addhandler event is in the pages Page_Load
sub but not in a custom routine.
Thanks.
... more >>
HtmlEncode in <asp:image>
Posted by MRW at 9/30/2006 10:42:23 AM
Hello!
I'm taking a file name from a database and using the <asp:image> tag in
GridView to show the image. However, some of the file names have
spaces in it and no matter what I do, for example:
<asp:Image runat=server ImageUrl=<%#
HttpUtility.HtmlDecode((Eval("WallpaperLink"))) %> />
... more >>
Create Custom DateTime
Posted by shapper at 9/30/2006 9:11:59 AM
Hello,
I am taking a date/time value from a database and I need to display it
as follows:
[Weekday], [Day] of [Month] [Year] # [Hour]:[Minutes]
And example:
Saturday, 30 of September 2006 # 17:30
I tried a few functions in Asp.Net 2.0 but I was never able to create a
really custom f... more >>
Atlas Update Panel: javascript sequence issue
Posted by rodchar at 9/30/2006 6:42:01 AM
hey all,
how can i get javascript procedure to execute as the very last thing before
the page is rendered?
Background: I have a DIV element inside an update panel. I am setting the
scrollLeft attribute of the DIV via javascript to move its contents left and
right, fine so far. The problem ... more >>
How to create wesite in multiple user languages
Posted by Pramit at 9/30/2006 6:41:05 AM
Hello friends,
Can anybody guide me how to create a website using asp.net
2.0 which gives user to choose multiple languages like engloish,
chinease , french etc. also examples of these types of sites?
... more >>
Google and Asp.Net
Posted by shapper at 9/30/2006 5:47:06 AM
Hello,
If you make a search in Google for "CNN" you will get the result as
follows:
CNN.com - Breaking News, US, World, Weather, Entertainment & Video ...
CNN.com delivers the latest breaking news and information on the latest
top stories, weather, business, entertainment, politics, and m... more >>
Visible Bindable Property - Eval code help
Posted by Steve at 9/30/2006 12:41:02 AM
In my gridview, I have a template column whose 'visible property' I
wish to bind to a database field called "TransactionType" which is of a
string datatype.
I only want the data in this gridview column to be visible when the
"TransactionType" field = "Income"
i.e. I want to do something lik... more >>
|