Click here to Skip to main content
15,911,139 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHelp Finindg Article/Code Pin
bdeline27-Nov-06 5:40
bdeline27-Nov-06 5:40 
QuestionASP.net Video Tutorials Pin
wEb GuRu...27-Nov-06 5:05
wEb GuRu...27-Nov-06 5:05 
QuestionDebugging Problem Pin
dayakar_dn27-Nov-06 4:15
dayakar_dn27-Nov-06 4:15 
AnswerRe: Debugging Problem Pin
wEb GuRu...27-Nov-06 5:38
wEb GuRu...27-Nov-06 5:38 
AnswerRe: Debugging Problem Pin
ravikiranreddydharmannagari27-Nov-06 20:11
ravikiranreddydharmannagari27-Nov-06 20:11 
QuestionOpen an asp.net in a windows (no resize and no toolbars and no menus) Pin
ADY00727-Nov-06 3:44
ADY00727-Nov-06 3:44 
AnswerRe: Open an asp.net in a windows (no resize and no toolbars and no menus) Pin
Eduard Keilholz27-Nov-06 3:47
Eduard Keilholz27-Nov-06 3:47 
GeneralRe: Open an asp.net in a windows (no resize and no toolbars and no menus) Pin
Sandeep Akhare28-Nov-06 0:57
Sandeep Akhare28-Nov-06 0:57 
function open_PopupWindow()
{
window.open('testpage.htm','null',"height=500, width=600,status=yes,toolbar=yes, menubar=yes,location=no");

}

You can do another way also only you have to import SHDocVw dll and create the object of InternetExplorerClass and use navigate method

SHDocVw.InternetExplorerClass objects = new InternetExplorerClass();
objects.Navigate("http://localhost:3934/TestForForums/Default.aspx", ref empty, ref empty, ref empty, ref empty);
objects.AddressBar = true;
objects.IWebBrowserApp_MenuBar = false;
objects.IWebBrowserApp_StatusBar = false;
objects.IWebBrowserApp_ToolBar = 0;
objects.Visible = true;
QuestionCalendar Pin
aaraaayen27-Nov-06 2:21
aaraaayen27-Nov-06 2:21 
QuestionWant to run my application on another machine Pin
Sandeep Akhare27-Nov-06 2:18
Sandeep Akhare27-Nov-06 2:18 
AnswerRe: Want to run my application on another machine Pin
Eduard Keilholz27-Nov-06 3:52
Eduard Keilholz27-Nov-06 3:52 
Questionchange the font of master page control Pin
srinandan..27-Nov-06 1:25
srinandan..27-Nov-06 1:25 
AnswerRe: change the font of master page control Pin
Guffa27-Nov-06 3:51
Guffa27-Nov-06 3:51 
GeneralRe: change the font of master page control Pin
srinandan..27-Nov-06 4:00
srinandan..27-Nov-06 4:00 
AnswerRe: change the font of master page control Pin
Guffa27-Nov-06 7:19
Guffa27-Nov-06 7:19 
GeneralRe: change the font of master page control Pin
indianet27-Nov-06 10:26
indianet27-Nov-06 10:26 
GeneralRe: change the font of master page control Pin
srinandan..27-Nov-06 20:15
srinandan..27-Nov-06 20:15 
QuestionCan not copy fie to the server. Pin
Chetan Ranpariya27-Nov-06 1:19
Chetan Ranpariya27-Nov-06 1:19 
AnswerRe: Can not copy fie to the server. Pin
Tal Kain28-Nov-06 12:30
Tal Kain28-Nov-06 12:30 
QuestionHow to remove last row from DataView before binding it to a DataGrid? Pin
crazy_mads26-Nov-06 23:53
crazy_mads26-Nov-06 23:53 
AnswerRe: How to remove last row from DataView before binding it to a DataGrid? Pin
just3ala227-Nov-06 3:20
just3ala227-Nov-06 3:20 
Questionvc package is not available or not installed.. Pin
MissionSuccess26-Nov-06 23:51
MissionSuccess26-Nov-06 23:51 
AnswerRe: vc package is not available or not installed.. Pin
minhpc_bk27-Nov-06 0:12
minhpc_bk27-Nov-06 0:12 
GeneralRe: vc package is not available or not installed.. Pin
MissionSuccess27-Nov-06 0:20
MissionSuccess27-Nov-06 0:20 
QuestionConvert string into integer Pin
Imran Khan Pathan26-Nov-06 23:35
Imran Khan Pathan26-Nov-06 23:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.