[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-06 Thread Andrew Badera
Yeah, got that from your link prior. 2009/9/6 Raghupathi Kamuni : > http://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.add.aspx > > public void Add( >     string name, >     Object value > ) > > if (!String.IsNullOrEmpty(TextBox1.Text) & >     !String.IsNullOrEmpty

[DotNetDevelopment] Re: ASP.NET Session Problem

2009-09-06 Thread Raghupathi Kamuni
http://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.add.aspx public void Add( string name, Object value ) if (!String.IsNullOrEmpty(TextBox1.Text) & !String.IsNullOrEmpty(TextBox2.Text)) { string itemName = Server.HtmlEncode(TextBox1.Text); string itemVa

[DotNetDevelopment] Re: Web Site HArdWare Configuration

2009-09-06 Thread Andrew Badera
I will happily consult with your employer to provide an appropriate load-balanced server farm, load-balanced service tier, caching and clustered database scenario to support your needs. ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://ww

[DotNetDevelopment] Re: Check The Records-SQL

2009-09-06 Thread Andrew Badera
Hey everybody, Think the OP could use ROW_NUMBER? Maybe? Is it possible? (It's like a broken record in here.) But is it exactly what the OP is looking for? Really? Is it? ∞ Andy Badera ∞ +1 518-641-1280 ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/

[DotNetDevelopment] Re: Content are not displaying into correct place .

2009-09-06 Thread Andrew Badera
On Sat, Sep 5, 2009 at 11:26 AM, ROHIT wrote: > > I am working on project in C#. > Here i had created master page, then i created one page in content > place holder of master page. But the content from this page displayed > in the web browser is not same as i created in a Visual studio 2005. > How

[DotNetDevelopment] Re: TFS server

2009-09-06 Thread Gunawan Hadikusumo
could be connection problem...that lead to that error... On Fri, Sep 4, 2009 at 4:18 PM, Andrew Badera wrote: > > Network issues? Server issues? Not sure we can really help you much here. > > ∞ Andy Badera > ∞ +1 518-641-1280 > ∞ This email is: [ ] bloggable [x] ask first [ ] private > ∞ Google

[DotNetDevelopment] read xml from web site

2009-09-06 Thread Niven Sookharan
hi guys please can someone help me. i'm tryin to extract a line from an xml file the tricky part is that the source of the file. the file is the result of a http web request. eg. www.xmlfile.com/testfile1 how can i extract the a line from the file without the user seeing this file or the proce

[DotNetDevelopment] Web Site HArdWare Configuration

2009-09-06 Thread Harpreet Singh
Hi Experts I m creating a Web SIte where simuntaneously 5000 users can be able to login to the site. Actaully it is a web portal for student where student in a university can check theri online attendance,exams, fee, academic, library and all records online. What server configuration i need to

[DotNetDevelopment] Re: Check The Records-SQL

2009-09-06 Thread Yonggang, Meng
ROW_NUMBER() OVER(ORDER BY [column name]) is what you want. On Sep 4, 9:12 pm, san wrote: >  How can i get the  row number in which record is stored in sql server. > > Example: suppose if record is stored in fifth row i want output as 5. > > Thanks!

[DotNetDevelopment] Content are not displaying into correct place .

2009-09-06 Thread ROHIT
I am working on project in C#. Here i had created master page, then i created one page in content place holder of master page. But the content from this page displayed in the web browser is not same as i created in a Visual studio 2005. How i can solve this problem??

[DotNetDevelopment] Re: Check The Records-SQL

2009-09-06 Thread Harpreet Singh
user ROW_NUMBER Over (order by fanSerialNo) as Srno It will gve u the Sr no of the Row.But there must be some unique key or group of keys so that we can get the rownumber according to that particular key On Fri, Sep 4, 2009 at 11:24 PM, Davaasuren Nyamjav wrote: > Using Row_number() function or

[DotNetDevelopment] Re: treeview events not firing c# form

2009-09-06 Thread netdev1
Hello That was the missing part. Thanks very much! On Sep 4, 6:42 pm, Andrew Badera wrote: > But where are you associating those handlers with the events on the controls? > > ∞ Andy Badera > ∞ +1 518-641-1280 > ∞ This email is: [ ] bloggable [x] ask first [ ] private > ∞ Google me:http://www.goo

[DotNetDevelopment] Using C# class in VB.Net Application

2009-09-06 Thread .NetNewbie
I have a C# class that I would like to use in a VB.Net application. Is this possible? If so, how do I include the C# class in my project so that I can instantiate a class of it? Thanks.

[DotNetDevelopment] Re: Page resolution

2009-09-06 Thread Raghupathi Kamuni
Use percentage in widths for all the tags , and On Fri, Sep 4, 2009 at 3:14 AM, Suraj wrote: > Hi all, > > I am using a asp table to display 40 labels. 20 labels are hard coded and > 20 come from back end depending on search criteria. > My problem is with the table. The table acts weird accord