我的jbossews盒式磁带突然无法通过webbrowser获得,但是当通过SSH登录时,似乎可以访问:
到目前为止我做了什么:
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
Label lb = GridView1.HeaderRow.FindControl("Label1") as Label;
GridViewRow row = GridView1.Rows[e.RowIndex];
FileUpload fu = row.Cells[0].FindControl("fileupload") as FileUpload;
if (fu.HasFile)
{
string file = System.IO.Path.Combine(Server.MapPath("~/uploadedimages/"), fu.FileName);
fu.SaveAs(file);
using (Ex_RepeaterEntities entities = new Ex_RepeaterEntities())
{
Student students = (from e1 in entities.Students
where e1.Id == Convert.ToInt32(lb.Text)
select e1).First();
students.Images = file;
entities.SaveChanges();
}
}
}
我的cartrdige时,我得到gear restart
。 Found 127.3.72.129:8080 listening port
实际下载了有效的index.html wget 127.3.72.129:8080
上使用wget(也使用“:8080”),我只是wget test-locked.rhcloud.com
我的想法已经用完了我接下来要检查的东西,或者让装备再次运转起来。任何帮助将不胜感激。
答案 0 :(得分:0)
在Openshift神奇地恢复之后,这个问题的答案似乎是:“放松,观望”。