1、怎麼查看網頁源文件
樓上的兩位是一種查看方法,還有一種方法是瀏覽選項中的「查看」中有個源文件,也可以查看的!
2、怎麼查看網頁的源文件
有兩種方法很簡單:
1,在網頁里的空白處---{點}右鍵--{點}查看源文件{v}
.
2,在瀏覽器---菜單欄---{點}查看---{點}查看源文件{c}
.
出一個txt文檔,即可查看!
3、求原創photoshop作品,要帶源文件!網頁設計作品~~
這個是預覽圖,滿意的話就下載附件中的源文件
4、求一個網頁設計的源文件就是用記事本打出來的那些代碼!
具體一些呢
5、怎麼獲取網頁源代碼中的文件?
獲取網頁源代碼抄中的文件的具體步驟如下:
1、首先我們在瀏覽器里隨意打開一張網頁查看其源代碼。
2、然後我們點擊瀏覽器上的查看。
3、在選項中選擇後面位置的查看源代碼。
4、然後我們可以看到該網頁中的源代碼。
5、其中的源代碼也可以點擊訪問。
6、點擊訪問的源代碼的顯示的如下圖,即可看到源代碼所顯示的數據。
6、如何獲取這個網頁的源文件
#include <Windows.h>
#include <WinInet.h>
#include <stdio.h>
#include <iostream>
using namespace std;
#pragma comment(lib,"wininet.lib")
int main()
{
// 1. InternetOpen() 函數
HINTERNET hInternetOpen = InternetOpen( "Application",
INTERNET_OPEN_TYPE_PRECONFIG,
NULL ,
NULL ,
0
);
if ( NULL == hInternetOpen )
{
printf("2.Error : Internet Open() Failed.
");
return -1;
}
else printf("1.Continue : Internet Open() Ready.
");
// 2. InternetConnect() 函數
HINTERNET hInternetConn;
hInternetConn = InternetConnect( hInternetOpen,
"mail.sina.com.cn",
INTERNET_DEFAULT_HTTP_PORT,
NULL,
NULL,
INTERNET_SERVICE_HTTP,
0,
1
);
if ( NULL == hInternetConn )
{
printf("2.Error : Internet Connect() Failed.
");
return -1;
}
else printf("2.Continue : Internet Connect() Ready.
");
// 3. HttpOpenRequest()函數
LPCSTR lpszAcceptTypes = "Accept: text/html, application/xhtml+xml, */*";
HINTERNET hHttpOpenRequest = HttpOpenRequest( hInternetConn,
"POST",
"cgi-bin/login.php",
"HTTP/1.1",
"Referer: http://mail.sina.com.cn/cgi-bin/login.php",
&lpszAcceptTypes,
INTERNET_FLAG_RELOAD ,
0
);
if ( NULL == hHttpOpenRequest )
{
printf("3.Error : HttpOpenRequest() Failed.
");
return -1 ;
}
else printf("3.Continue : HttpOpenRequest() Ready.
");
// 4. HttpSendRequest() 函數
LPCSTR lpszHeaders = "Content-Type: application/x-www-form-urlencoded
";
DWORD dwHeadersLength = -1L;
char szFormData[1024] = {0};
strcpy(szFormData,"logintype=uid&u=這里填自己的用戶名&psw=這里填密碼&proct=mail&%B5%C7%C2%BC=%B5%C7+%C2%BC
");
LPVOID pBuf = (LPVOID)szFormData;
BOOL bReturn = HttpSendRequestA(hHttpOpenRequest,
lpszHeaders,
dwHeadersLength,
pBuf,
strlen(szFormData)
);
int nErr = GetLastError();
if ( bReturn == TRUE ) printf("4.Continue : POST Success.
");
else
{
printf("4.Error : POST Failed. Error Number : %d.
", nErr );
system("pause");
return -1 ;
}
// 創建本地記錄文件
LPCSTR lpFileName = "recv.html";
HANDLE hFile = (HANDLE)CreateFileA( lpFileName, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, NULL, NULL );
if ( hFile == NULL ) printf("創建接受文件錯誤!");
else printf("CreateFile() Success.
");
char buffer[1024];
memset(buffer, 0 , sizeof(buffer) );
DWORD dwBytesRead;
DWORD dwTotalBytes = 0;
DWORD dwBufferSize = 0;
DWORD dwBytesWritten;
do{
bReturn = InternetReadFile( hHttpOpenRequest, buffer, 1024, &dwBytesRead );
if ( !bReturn ) printf("InternetReadFile() Failed.");
dwTotalBytes += dwBytesRead;
dwBufferSize += strlen(buffer);
printf("InternetReadFile() Success.
");
bReturn = WriteFile(hFile, buffer, 1024, &dwBytesWritten, NULL);
if( !bReturn ) printf("WriteFile() Failed.");
else printf("WriteFile() Success.
");
}while( dwBytesRead != 0 );
CloseHandle( hFile );
InternetCloseHandle( hInternetConn );
InternetCloseHandle( hInternetOpen );
InternetCloseHandle( hHttpOpenRequest );
system("pause");
return 0;
}
7、求網頁設計作品,包括:首頁psd源文件,DW中布局的首頁以及四個子頁面
樓主,很負責人的告訴你!你這樣的問題,沒報酬沒人願意搞的!!
完畢·
8、哪裡有網頁設計源文件下載
去源碼之家找找吧/
www.mycodes.net/
你可以去看看asp的,這樣你就不需要裝框架了.
也可以去下載asp.net的,不過得回先裝個.net freamwork
不過asp的很答難看,推薦看看asp.net的