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:704307
More Search Options
RSS Available
Matching Posts
Re: refresh parent page
Try calling following code to refresh parent page. string scriptString = "<script language=JavaScript> " + "window.opener.document.forms(0).submit(); </script>" ; if (!Page.ClientScript.IsClientScriptBlockRegistered(scriptString)) { Page.ClientScript.RegisterClientScriptBlock( this .GetType(), "script" , scriptString); }
Posted to
State Management
(Forum)
by
anantDD
on 7/9/2009
Re: Redirect + show message?
Use following code. Call this function whenever you want to show message before redirecting. Pass the message and the url of the page to which u want to redirect. private void ShowMessageAndCloseWindow(String msg, String url) { StringBuilder str = new StringBuilder(); str.Append("<script language ='javascript'>alert('" + msg + "');window.location.href='" + url + "'</script>"); Page.ClientScript.RegisterClientScriptBlock(this.GetType
Posted to
ASP.NET MVC
(Forum)
by
anantDD
on 7/6/2009
Re: selecting values from one table and inserting in another
Hi! Can u pls post the cursor that u have written? As far as I think the given cursor will run only for the rows in table1 and not more than that. As u r saying 30,000 records are get inserted it means cursor is not exited. Pls post ur code.
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
anantDD
on 7/4/2009
Re: selecting values from one table and inserting in another
Try using cursor as shown below : declare @counter int set @counter = 0 declare Cr cursor for select fild1, field2 from table1 open Cr fetch next from Cr into @field1,@field2 while ( @@fetch_status = 0 ) begin insert into table2(table2ID,Table2Field1, Table2Field2) value (@counter,@field1,@field2) set @counter = @Counter + 1 close Cr deallocate Cr
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
anantDD
on 7/3/2009
Re: Accessing Outlook from an ASP.Net page
Hi! Visit following link. http://msdn.microsoft.com/en-us/library/ms268893(VS.80).aspx Hope it may help.
Posted to
Enterprise Services Integration
(Forum)
by
anantDD
on 7/1/2009
Re: session variables in DLL
Hi! Actually your code seems right. Please check that the name of session variable is spelled correctly. Also this problem may occur if u r not using this dll web applocation. If u r referencing it in other kind of application like Windows application u can use HttpContext.Current.Cach object insted of Session.
Posted to
State Management
(Forum)
by
anantDD
on 7/1/2009
Re: debug dll in two solutions?
Hi! go to your class lib. project. Right click on solution name. Project properties page will open. On Debug tab check the "Start browser with URL" and pass the URL of the web application. Save the changes. In your web application where u r calling a function in class library set a breakpoint. And run your web applcation in debug mode. When control come to your breakpoint press F8 key. Now you can debug the class lib. file. Note : You have to add reference to your class lib. dll by right
Posted to
Getting Started
(Forum)
by
anantDD
on 7/1/2009
Re: Passing values within tabs
Hi! You can find control is the tab by using following code . TextBox txt = TabContainer1.Tabs[0].FindControl("TextBox1"); now u will get the value entered in the textbox.
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
anantDD
on 7/1/2009
Re: How can i show the Error page!!!
Hi ! Try to handle the Page_Error event. This event will be called when any unhandelled exeption occurs on the page. You can the redirect the user to Error page like Error.aspx
Posted to
Web Forms
(Forum)
by
anantDD
on 6/30/2009
Re: Accessing Outlook from an ASP.Net page
Hi! Try creating object of Microsoft.Office.Interop.Outlook.Application type. U can access all outlook entries with this object.
Posted to
Enterprise Services Integration
(Forum)
by
anantDD
on 6/30/2009
Page 1 of 3 (22 items) 1
2
3
Next >
ASP.NET:
Converting an RGB Color To Hex With JavaScript
Silverlight:
Silverlight HVP Design – Configuration & Scenarios
Channel 9:
Channel 9 Live at PDC09: Day 3 Welcome
Channel 9:
Channel 9 Live at PDC09: TWoC9 Day 3
Channel 10:
Microsoft's Mobicast: Stiched Cell Streams
Channel 10:
Festive Bing
TechNet Edge:
How Microsoft Reduces Operational Risk through Business Continuity Management
Channel 9:
Jeffrey Van Gogh and Bart De Smet: Inside System.Interactive
WindowsClient:
Runtime Fault Injection using TestAPI
TechNet Edge:
TechNet Radio: Community Corner with John Weston (Episode 1)
TechNet Edge:
Windows Firestarter Events (Part 3 of 5): IE8 - Browse the Web in Style!
WindowsClient:
The year ahead, 2010.
TechNet Edge:
FOPE Policies Deep Dive Interview
Silverlight:
Silverlight HVP Design Update
WindowsClient:
Windows Client Developer Roundup for 12/28/2009
WindowsClient:
Snoop with 64 bit support
ASP.NET:
jQuery Hide/Close Link
ASP.NET:
Merry Christmas
TechNet Edge:
FPE Customer Story
Silverlight:
Being a writer, and having an editor. A Short Rant.
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online