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:857464
More Search Options
RSS Available
Matching Posts
Re: Response.Redirect() from within an UpdatePanel
hi.. try this ScriptManager.RegisterStartupScript(this, this.GetType(), "key", " window.open('Default.aspx');", true);
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
rushik
on 11/17/2009
Re: Deleteing parent/child colums
hi.. sorry for delay... you can do it using this query .. ;WITH CTE AS ( SELECT CategoryID, Name, ParentId FROM Categories WHERE CategoryID=1 UNION ALL SELECT c.CategoryID, c.Name, c.ParentId FROM Categories AS c INNER JOIN CTE C1 ON C1.CategoryID = c.ParentId ) -- --SELECT * --FROM CTE DELETE FROM Categories WHERE CategoryID IN ( SELECT CategoryID FROM CTE )
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
rushik
on 11/3/2009
Re: Deleteing parent/child colums
hi.. try this query to select parent-child columns.. ;WITH CTE AS ( SELECT CategoryID, Name, ParentId FROM Categories WHERE CategoryID=1 UNION ALL SELECT c.CategoryID, c.Name, c.ParentId FROM Categories AS c INNER JOIN CTE C1 ON C1.CategoryID = c.ParentId ) SELECT * FROM CTE Note: this query runs on SQL server version 2005 or above.
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
rushik
on 10/31/2009
Re: Question about boolean with SQL...
hi.. I think it was issue of Quotation, try SelectCommand like this.. SELECT * FROM [articles] WHERE ([articlesCatID] = @articlesCatID) AND articleApproved = 'True' ORDER BY [articlesCatID] or SELECT * FROM [articles] WHERE ([articlesCatID] = @articlesCatID) AND articleApproved = 1 ORDER BY [articlesCatID]
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
rushik
on 10/30/2009
Re: <br/> problem in css
Hi.. you can do it using height attribute like.. <div style="height:150px;"> </div>
Posted to
Client Side Web Development
(Forum)
by
rushik
on 10/1/2009
Re: Do while loop with store procedure
hi.. you can to do it logically like.. excecute your statement just before of your while loop which you have to execute in do. then exceute while loop. this is same as do-while loop as do is exceuted in any case.
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
rushik
on 9/14/2009
Re: Modalpopup
hi.. You can display string in ModalPopUp using Panel_Load event instead of passing to Javascript. you have to fire panel load event, the panel is the same one which is your PopControlID in modalpopup. ex.. < asp : Panel ID ="Panel1" runat ="server" CssClass ="modalPopup" Style =" display : none ; " Width ="600px" onload ="Panel1_Load"> and in code file.. protected void Panel1_Load(object sender, EventArgs e) { Label1.Text = "your
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
rushik
on 9/7/2009
Re: Stored Procedure or CodeBehind
hi.. you can check for the null value same as you have shown and if you have blank text then add following condition to your procedure.. IF (@CellPhone IS NOT NULL AND LTRIM(RTRIM(@CellPhone)) <> '') THEN INSERT INTO customer_phone( ContactID, PhoneNumber, PhoneTypeID) VALUES( @ContactID, @CellPhone, '3') END IF hope this helps..
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
rushik
on 9/7/2009
Re: how to disable maximize button in a webpage?
hi.. you can specify it in window.open method like this.. window.open ("http://www.google.com","mywindow","menubar=0,resizable=0,width=300,height=300"); for more information.. http://www.javascript-coder.com/window-popup/javascript-window-open.phtml hope this helps..
Posted to
Web Forms
(Forum)
by
rushik
on 9/5/2009
Re: sql backup
hi.. go through this articles.. http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/021c7aa5-4a8a-4bbb-8ff0-fe6b03920aae http://support.microsoft.com/kb/207187 http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/7b259f06-e1e2-47f5-8303-77775ee80400 hope this helps..
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
rushik
on 9/2/2009
Page 1 of 23 (226 items) 1
2
3
4
5
Next >
...
Last ยป
TechNet Edge:
Microsoft Windows Server 2008 to AITP
ASP.NET:
How important is medium trust to you?
WindowsClient:
Microsoft Web Platform & You
WindowsClient:
New Book: Developing for Microsoft Surface
Channel 9:
BugCamSmash in Action!
Channel 9:
Virtual Earth Videomap Movies
TechNet Edge:
AD RMS Certificates and Licensing on the Client and the Server
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 10 of 13 [C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 10 of 13]
Channel 10:
Bing Launches 2nd Homepage Photo Contest
Channel 10:
Bing4Free Lets You Use Bing.com Images for Desktop Wallpaper
Channel 10:
Bing Updates: Streetside Views, Photosynth, and "Mapplications"
Channel 10:
Bing for Windows Mobile Updated
WindowsClient:
New WPF Showcase: Bling Tweets
WindowsClient:
Tale of two tweets - VS beta - is it busy 70% of the time or is it brilliantly fast?
TechNet Edge:
Forefront TMG URL Filtering and MRS
Mix Online:
Using the HTML5 Video and Audio Tag with Gestalt
WindowsClient:
Subclassing Shape (or more accurately, Path)
WindowsClient:
Having trouble deleting files? Try this
Channel 9:
Nick Baker: Xbox Architecture
TechNet Edge:
Thrive Live! Behavioral Interviewing: A behavioral answer is always the correct answer
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online