Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:872637
More Search Options
RSS Available
Matching Posts
Re: Migration from asp.net 1.1 to 2.0 has become a nightmare
When you migrate to asp.net 2.0, some of the code behind files(.cs) gets moved into "App_Code" folder. Just cut that and place it outside (appropriate) the folder.
Posted to
Migrating from ASP.NET 1.x to ASP.NET 2.0
(Forum)
by
Johny.cbe
on 6/19/2009
Re: How to get live soccer scoreboard in asp.net
Check out the link: http://forums.asp.net/t/1419022.aspx
Posted to
Web Forms
(Forum)
by
Johny.cbe
on 6/19/2009
Re: Sending URL parameter from javascript to ASPX page
Use the following in your function : window.location.href = "TestParameter.aspx?ID=" + test ;
Posted to
Client Side Web Development
(Forum)
by
Johny.cbe
on 6/19/2009
Re: trying to write asp.net (c#) for simple ajax application
Take a look at the following article. It explains the function of ajax. http://www.adaptivepath.com/ideas/essays/archives/000385.php
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
Johny.cbe
on 6/18/2009
Re: trying to write asp.net (c#) for simple ajax application
Its throwing script error, right ?? Just Replace the following function. It has one extra angle bracket (}). Remove it. function RetrieveName() { if(obj.readyState == 4) { document.getElementById("txtHint").innerHTML=obj.responseText; //var result = obj.responseText; //'result' has all the datas that is returned from 'DefaultPage.aspx' //In case of large resultset, load the data into XMLdocument.getElementById("TextBox1").value = result;//Just used to populate
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
Johny.cbe
on 6/18/2009
Re: Post back allows duplicate postings of data to SQL server
Try the following: protected void Page_Load( object sender, EventArgs e) { if (!IsPostBack) { Session[ "Check" ] = "" ; } } protected void Button1_Click( object sender, EventArgs e) { if (Session[ "Check" ].ToString() != TextBox1.Text) { if (IsPostBack) { //Your stuff goes here Session[ "Check" ] = TextBox1.Text; } } } ü First time when the page is loaded session is set to blank value. ü On clicking the button the session is checked with Textbox value (Since
Posted to
Getting Started
(Forum)
by
Johny.cbe
on 6/18/2009
Re: Help Edit Resource.resx
Try using the below code : rxValue is the actual value from resource file. Dim xmlDoc As New XmlDocument() xmlDoc.Load(FileName) Dim rootNode As XmlNode = xmlDoc.SelectSingleNode( "root" ) For Each Node As XmlNode In rootNode If Node.Name = "data" And Node.Attributes( "name" ).Value = rxValue Then Node.SelectSingleNode( "value" ).InnerText = txtResourceValue.Text End If Next ----------------------------------------------------------------------------------
Posted to
Web Forms
(Forum)
by
Johny.cbe
on 6/18/2009
Re: How can i read variable value from javascript?
Declare a public global variable in code behind: public string a = "Hello World" ; In javascript you can access this variable using : var a = "<%=a%>" ;
Posted to
Getting Started
(Forum)
by
Johny.cbe
on 6/18/2009
Re: how to close windows with java script
To close the child form and refresh the parent form use the following code in page load event: Button1.OnClientClick = "self.opener.document.location.href='parentPage.aspx';window.close();" ;
Posted to
Client Side Web Development
(Forum)
by
Johny.cbe
on 6/18/2009
DataBind() !!!
Define DataBind(). What actually happens when we call this method ??
Posted to
Data Presentation Controls
(Forum)
by
Johny.cbe
on 6/17/2009
Filed under: server control
Page 1 of 2 (15 items) 1
2
Next >
ASP.NET:
ASP.NET MVC 2 and Visual Studio 2010
ASP.NET:
Moving your ASP.NET Application to Windows Azure – Part II
Silverlight:
HVP – Core Scaffolding and Updated News
Channel 9:
TWC9: 2009 - The Year in Review
ASP.NET:
Tip#100: Did you know… How to view ASP.NET trace information?
ASP.NET:
Passing anonymous objects to MVC views and accessing them using dynamic
Channel 9:
Channel 9 Live at PDC09: Coding 4 Fun
Channel 9:
Channel 9 Live at PDC09: Stephen Toub
WindowsClient:
Mouse Gestures for Internet Explorer
Channel 9:
Controlling concurrency in Rx
Channel 9:
Dev Tools Ecosystem Summit Videos Available
WindowsClient:
Using Cerebrata's Cloud Storage Studio To Download IIS logs from Multiple Instances of Windows Azure
TechNet Edge:
TechNet Radio: Office 2007 Setup and Configuration (Part 1)
Channel 10:
How-To: Listen to Your Zune Pass Music on Your WinMo Phone
Channel 10:
Share Your Screen with SharedView
Channel 10:
Get Microsoft Tinker Game For Free
Channel 10:
LG eXpo WinMo 6.5 Unboxing Video
Channel 9:
ADFS 2.0 RC is Here!
Channel 10:
Bing Reference Updated with New Sidebar Features
Channel 10:
Look Behind SurfaceScapes
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online